Calculate summary statistics from a <data.frame>
by group.
Currently supports the mean, median and standard deviation.
Examples
samples <- data.frame(value = 1:10, type = "car")
# default
calc_summary_stats(samples)
#> median mean sd
#> <num> <num> <num>
#> 1: 5.5 5.5 3.02765
# by type
calc_summary_stats(samples, summarise_by = "type")
#> type median mean sd
#> <char> <num> <num> <num>
#> 1: car 5.5 5.5 3.02765