powered by
Reframe a data frame. Note this is a simple alias for summarize() that always returns an ungrouped tidytable.
summarize()
reframe(.df, ..., .by = NULL)
A data.frame or data.table
Aggregations to perform
Columns to group by
mtcars %>% reframe(qs = quantile(disp, c(0.25, 0.75)), prob = c(0.25, 0.75), .by = cyl)
Run the code above in your browser using DataLab