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:
B + 10B unchanged !!
B <- B + 10B changed !!