This method prints an "cat_output" class object
# S3 method for cat_output
print(
x,
...,
n = NULL,
print_header = TRUE,
base_print = FALSE,
silent = FALSE
)
An 'cat_output' class object that will be printed.
Additional arguments
maximum number of administered items to print. Default is
NULL
, where all items are printed if the number of items are
smaller than 20, otherwise only first 10 items are printed.
Whether to print the object class in the first line.
Whether to print the cat_output
object
using the base printing capabilities. If FALSE, the function will look at
'tibble' package and tries to print the cat_output
using
that function.
If TRUE, no output will be printed on the console, only a data frame will be returned.
Emre Gonulates