View source: R/generalized_mean.R
hmean | R Documentation |
Harmonic Mean
hmean(x, ...) ## Default S3 method: hmean(x, trim = 0, na.rm = FALSE, ...)
x |
An R object. Currently there are methods for numeric/logical
vectors and date, date-time and time interval objects. Complex vectors
are allowed for |
... |
further arguments passed to or from other methods. |
trim |
the fraction (0 to 0.5) of observations to be trimmed from each
end of |
na.rm |
a logical value indicating whether |
If trim
is zero (the default), the harmonic mean of the values
in x
is computed, as a numeric or complex vector of length one. If x
is not logical (coerced to numeric), numeric (including integer) or
complex, NA_real_
is returned, with a warning.
If trim
is non-zero, a symmetrically trimmed mean is computed with a
fraction of trim observations deleted from each end before the mean
is computed.
mean
for the arithmetic mean and gmean
for the geometric
mean.
x <- c(1:10, 50) xm <- hmean(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.