utils_stats: These functions applies common statistics to a list of...

utils_statsR Documentation

These functions applies common statistics to a list of objects, returning a numeric vector.

Description

These functions applies common statistics to a list of objects, returning a numeric vector.

Usage

mean_list(x, ...)

sd_list(x, ...)

max_list(x, ...)

min_list(x, ...)

Arguments

x

A data.frame or matrix with numeric values.

...

Further arguments passed on to the R base function (e.g, mean(), sd(), etc.)

Value

A numeric vector.

Examples

mean_list(list(a = 1:10, b = 2:20))

pliman documentation built on Oct. 15, 2023, 1:06 a.m.

Related to utils_stats in pliman...