| group_by_decorations.data.frame | R Documentation |
Invokes group_by
using whatever groups are recovered by
decorations_groups.
## S3 method for class 'data.frame'
group_by_decorations(x, ...)
x |
grouped_df |
... |
ignored |
list of symbols
Other decorate:
as_decorated(),
as_decorated.default(),
decorate(),
decorate.character(),
decorate.data.frame(),
decorate.list(),
decorate_groups(),
decorate_groups.data.frame(),
decorations(),
decorations.data.frame(),
decorations_groups(),
decorations_groups.data.frame(),
group_by_decorations(),
redecorate()
library(magrittr)
library(dplyr)
Theoph %>% group_vars # nothing!
Theoph %<>% decorate_groups(Subject, Time)
Theoph %<>% group_by_decorations
Theoph %>% group_vars # something
rm(Theoph)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.