R Guide for Beginners

FAQ About R Guide for Beginners

What should be considered when naming variables in R? R Guide for Beginners
2 years ago | gizem

What should be considered when naming variables in R?

Variable name in R cannot begin with a number or _(underscore) sign. If you started the variable's name with a period, it cannot continue with a digit.

Another important thing is that variables in R are case-sensitive.

For example, FAQAbout, FaqAbout and FAQABOUT are three different variables.