calc_summary_stats | R Documentation |
Calculate summary statistics from a <data.frame>
by group.
Currently supports the mean, median and standard deviation.
calc_summary_stats(samples, summarise_by = NULL)
samples |
A data.table containing at least a value variable |
summarise_by |
A character vector of variables to group by. |
A data.table containing the upper and lower bounds for the specified credible interval
samples <- data.frame(value = 1:10, type = "car")
# default
calc_summary_stats(samples)
# by type
calc_summary_stats(samples, summarise_by = "type")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.