These functions applies common statistics to a list of objects, returning a numeric vector.
Source:R/utils_measures.R
utils_stats.Rd
These functions applies common statistics to a list of objects, returning a numeric vector.
Arguments
- x
A data.frame or matrix with numeric values.
- ...
Further arguments passed on to the R base function (e.g, mean(), sd(), etc.)
Examples
mean_list(list(a = 1:10, b = 2:20))
#> a b
#> 5.5 11.0