Variable Names (Identifiers) - R (Variable Names) Flashcards
29) Rules for R variables are:
A variable name must start with a letter and can be a combination of letters, digits, period(.) and underscore(_). If it starts with period(.), it cannot be followed by a digit.
Legal Variable Names
30) Rules for R variables are: A variable name cannot start with a number or underscore (_)
Illegal 8 or _
31) Rules for R variables are: Variable names are case-sensitive (age, Age and AGE are three different variables)
(age, Age and AGE) !=
32) Rules for R variables are: Reserved words cannot be used as variables (TRUE, FALSE, NULL, if…)
Illegal (TRUE, FALSE, NULL, if…)
33) Forbidden Names (Illegal) for R variables are:
2myvar, my-var, my var, _my_var,
my_v@ar, TRUE
34) Remember that variable names are case-sensitive!
(age, Age and AGE) !=