harmonic.mean: Find the harmonic mean of a vector, matrix, or columns of a data.frame
Description
The harmonic mean is merely the reciprocal of the arithmetic mean of the reciprocals.
Usage
harmonic.mean(x,na.rm=TRUE,zero=TRUE)
Arguments
x
a vector, matrix, or data.frame
na.rm
na.rm=TRUE remove NA values before processing
zero
If TRUE, then if there are any zeros, return 0, else, return the harmonic mean of the non-zero elements
Value
The harmonic mean(s)
Details
Included as an example for teaching about functions. As well as for a discussion of how to estimate central tendencies.
Also used in statsBy to weight by the harmonic mean.
Values of 0 can be included (in which case the harmonic.mean = 0) or converted to NA according to the zero option.