geomean | R Documentation |
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
Johannes Ranke
geomean(c(1, 3, 9))
geomean(c(1, 3, NA, 9))
## Not run: geomean(c(1, -3, 9)) # returns an error
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.