geomean {kim} | R Documentation |
Geometric mean
Description
Calculate the geometric mean of a numeric vector
Usage
geomean(x = NULL, zero_or_neg_convert_to = NA)
Arguments
x |
a numeric vector |
zero_or_neg_convert_to |
the value to which zero or negative
values will be converted to. If |
Examples
## Not run:
geomean(c(1, 4))
geomean(c(1, 100))
geomean(c(1, 100, NA))
geomean(c(1, 100, NA, 0, -1, -2))
geomean(
x = c(1, 100, NA, 0, -1, -2),
zero_or_neg_convert_to = 1)
geomean(c(1, 100, NA, 1, 1, 1))
## End(Not run)
[Package kim version 0.5.422 Index]