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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

21) However, R does have a print() function available if you want to use it.

A

print()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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)}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly