geomean.Rd
Based on some posts in a thread on Stackoverflow http://stackoverflow.com/questions/2602583/geometric-mean-is-there-a-built-in This function returns NA if NA values are present and na.rm = FALSE (default). If negative values are present, it gives an error message. If at least one element of the vector is 0, it returns 0.
geomean(x, na.rm = FALSE)
x | Vector of numbers |
---|---|
na.rm | Should NA values be omitted? |
The geometric mean
#> [1] 3#> [1] NA