Variables - R (Print / Output Variables in R) Flashcards
1
Q
20) You can just type the name of the variable:
A
print() or variable name
2
Q
21) However, R does have a print() function available if you want to use it.
A
print()
3
Q
22) And there are times you must use the print() function to output code, for example when working with for loops :
A
for (x in 1:10) {print(x)}