dt_print_options {tidyfast} | R Documentation |
Set Print Method
Description
The function allows the user to define options relating to the print method for data.table
.
Usage
dt_print_options(
class = TRUE,
topn = 5,
rownames = TRUE,
nrows = 100,
trunc.cols = TRUE
)
Arguments
class |
should the variable class be printed? ( |
topn |
the number of rows to print (both head and tail) if |
rownames |
should rownames be printed? ( |
nrows |
total number of rows to print ( |
trunc.cols |
if |
Value
None. This function is used for its side effect of changing options.
Examples
dt_print_options(
class = TRUE,
topn = 5,
rownames = TRUE,
nrows = 100,
trunc.cols = TRUE
)