1.6 Assignment

The left is assigned to the value on the right. For example, x - 15 implies that the value 15 is assigned to a variable called x. Note: Variables are case-sensitive.

x <- 15
x - 1
## [1] 14