do_aggregate {dipsaus} | R Documentation |
A pipe-friendly wrapper of aggregate
when using formula as input.
do_aggregate(x, ...)
x |
an R object |
... |
other parameters passed to |
Results from aggregate
library(magrittr)
data(ToothGrowth)
ToothGrowth %>%
do_aggregate(len ~ ., mean)