Last chance! 50% off unlimited learning
Sale ends in
Print a data frame.
# S3 method for data.frame
print(x, …, digits = NULL,
quote = FALSE, right = TRUE, row.names = TRUE, max = NULL)
object of class data.frame
.
optional arguments to print
or plot
methods.
the minimum number of significant digits to be used: see
print.default
.
logical, indicating whether or not entries should be printed with surrounding quotes.
logical, indicating whether or not strings should be right-aligned. The default is right-alignment.
logical (or character vector), indicating whether (or what) row names should be printed.
numeric or NULL
, specifying the maximal number of
entries to be printed. By default, when NULL
,
getOption("max.print")
used.
This calls format
which formats the data frame
column-by-column, then converts to a character matrix and dispatches
to the print
method for matrices.
When quote = TRUE
only the entries are quoted not the row names
nor the column names.
# NOT RUN {
(dd <- data.frame(x = 1:8, f = gl(2,4), ch = I(letters[1:8])))
# print() with defaults
print(dd, quote = TRUE, row.names = FALSE)
# suppresses row.names and quotes all entries
# }
Run the code above in your browser using DataLab