with_rollup | R Documentation |
Compute total amounts at different group levels, producing multiple subtotals. With the 'with_rollup' clause following 'group_by', you can aggregate multiple grouping variables in one operation. This reflects the 'WITH ROLLUP' operations in 'SQL'.
with_rollup(grouped_df)
grouped_df |
'grouped_df' class |
A list of 'grouped_df' class. each 'grouped_df' object has a different grouping level.
mtcars %>% group_by(vs, am) %>% grouping_sets("vs","am",c("vs","am"))
mtcars %>% group_by(vs, am) %>% with_rollup()
mtcars %>% group_by(vs, am) %>% with_cube()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.