rollup: A Tidy implementation of
grouping sets, rollup and cube,
which are extensions of the group_by clause that compute
multiple group_by clauses in a single statement.
# From CRAN
install.packages("rollup")
# From Github
devtools::install_github("JuYoungAhn/rollup")rollup, please refer to
the Tutorial.mtcars %>% group_by(vs, am) %>% grouping_sets("vs","am",c("vs","am"),NA) %>%
summarize(n=n(), avg_mpg=mean(mpg))
mtcars %>% group_by(vs, am) %>% with_rollup() %>%
summarize(n=n(), avg_mpg=mean(mpg))
mtcars %>% group_by(vs, am) %>% with_cube() %>%
summarize(n=n(), avg_mpg=mean(mpg))
Need a high-speed mirror for your open-source project?
Contact our mirror admin team at info@clientvps.com.
This archive is provided as a free public service to the community.
Proudly supported by infrastructure from VPSPulse , RxServers , BuyNumber , UnitVPS , OffshoreName and secure payment technology by ArionPay.