Hmean | R Documentation |
Calculates the harmonic mean and its confidence interval of a vector x.
Hmean(x, method = c("classic", "boot"), conf.level = NA,
sides = c("two.sided","left","right"), na.rm = FALSE, ...)
x |
a positive numeric vector. An object which is not a vector is coerced (if possible) by as.vector. |
method |
a vector of character strings representing the type of intervals required. The value should be any subset of the values |
conf.level |
confidence level of the interval. Default is |
sides |
a character string specifying the side of the confidence interval, must be one of |
na.rm |
logical, indicating whether |
... |
further arguments are passed to the |
To compute the harmonic mean, 1/x
is first calculated, before the arithmetic mean and its confidence interval are computed by MeanCI
. The harmonic mean is then the reciprocal of the arithmetic mean of the reciprocals of the values. The same applies to the confidence interval.
The harmonic mean is restricted to strictly positive inputs, if any argument is negative, then the result will be NA
.
If the lower bound of the confidence interval is not greater than zero, then the confidence interval is not defined, and thus NA
will be reported.
Use sapply
to calculate the measures from data frame, resp. from a matrix.
a numeric value.
Andri Signorell <andri@signorell.net>
Snedecor, G. W., Cochran, W. G. (1989) Statistical Methods, 8th ed. Ames, IA: Iowa State University Press
Gmean
x <- runif(5)
Hmean(x)
m <- matrix(runif(50), nrow = 10)
apply(m, 2, Hmean)
sapply(as.data.frame(m), Hmean)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.