Social Media Research

02 R Data Analysis


Question

Describe how Variable assignment works in R!


Answer

Variables can be assigned using either the = or the <- (and ->) operator.

Multi assignments like a = b = c = 1 are also possible (in this case a,b,c are equal to 1)




Comments