![]() |
VOOZH | about |
print() function in R Language is used to print out the argument to the screen.
Syntax: print(x, digits, na.print) Parameters: x: specified argument to be displayed digits: defines minimal number of significant digits na.print: indicates NA values output formatExample 1: Output:
speed dist 1 4 2 2 4 10 3 7 4 4 7 22 5 8 16Example 2: Output:
[1] 2.1 [1] 2.14 [1] 2.143Example 3: Output:
[, 1] [, 2] [, 3] [1, ] 2 5 [2, ] 8 [3, ] 22 67 43