print.data.frame {base} | R Documentation |
These functions create or manipulate data frames, tightly coupled collections of variables which share many of the properties of matrices and of lists, used as the fundamental data structure by most of R's modeling software.
print(x, ..., digits = NULL, quote = FALSE, right = TRUE)
x |
object of class data.frame . |
... |
optional arguments to print or plot methods. |
digits |
the number of significant digits to be printed. |
quote |
logical, indicating whether or not strings
(character s) should be printed with surrounding quotes. |
right |
logical, indicating whether or not strings should be right-aligned. The default is left-alignment. |
For the print
method (print.data.frame
), see
print.matrix
.