In computer programming, a variable is a named memory location where data is stored. For example,
x = 13.8
Here, x is the variable where the data 13.8 is stored. Now, whenever we use x in our program, we will get 13.8.
x = 13.8
# print variabl…
Continue reading: R Variables and …