powered by
data.frame
A print method for grouped data.frames. Uses the standard print.data.frame() method but also reports the groups.
print.data.frame()
# S3 method for grouped_data print( x, ..., digits = NULL, quote = FALSE, right = TRUE, row.names = TRUE, max = NULL )
An object of class grouped_data.
grouped_data
Additional arguments to print().
print()
the minimum number of significant digits to be used: see print.default.
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.
NULL
getOption("max.print")
# NOT RUN { mtcars %>% group_by(cyl, am) %>% print() # }
Run the code above in your browser using DataLab