geom_mean {birk}R Documentation

Geometric Mean

Description

Computes the geometric mean of a vector, x. It is a wrapper for exp(mean(log(x))).

Usage

geom_mean(x, add0.001 = FALSE, ignore_neg = FALSE, ...)

Arguments

x

a numeric vector or an R object which is coercible to one by as.vector(x, "numeric”).

add0.001

logical. Should a small constant (0.001) be added to avoid issues with zeroes?

ignore_neg

logical. Should negative values be ignored to avoid NaNs?

...

further arguments passed to mean.

Author(s)

Matthew A. Birk, matthewabirk@gmail.com

See Also

mean

Examples

geom_mean(1:10)
geom_mean(0:10)
geom_mean(0:10, add0.001 = TRUE)
geom_mean(-10:10, add0.001 = TRUE, ignore_neg = TRUE)


[Package birk version 2.1.2 Index]