4.5 Assigning data to an object
Assigning a value to the object B: B <- 10
NOTE: You can see the objects you created in the upper-right panel in RStudio: the environment.
Reassigning: modifying the content of an object:
+ 10 B
B unchanged !!
<- B + 10 B
B changed !!