R/cumhmean.R

Defines functions cumhmean

Documented in cumhmean

#' Cumulative Harmonic Mean
#'
#' Returns a vector whose elements are the cumulative \emph{harmonic mean} of
#' the elements of the argument.
#'
#' @param x a numeric vector
#'
#' @return A numeric vector of the same length as \code{x}. An \code{NA} value
#'    in \code{x} causes the corresponding and following elements of the return
#'    value to be \code{NA}.
#'
#' @references
#' Kotz, S., Balakrishnan, N., Read, C.B, Vidakovic, B., Johnson, N.L. (2006)
#'    \emph{Encyclopedia of Statistical Sciences.} Wiley, New Jersey.
#'
#' @examples
#' cumhmean(c(9, 1, 4, 0, 3, NA, 8, 5))
#'
#' @seealso \code{\link{cumgmean}} for cummulative geometric mean, and
#'    \code{\link{cummean}} for cummulative mean.
#'
#' @author Arturo Erdely, \email{arturo.erdely@@comunidad.unam.mx}
#'
#' @export
#'

cumhmean <-
function(x) 1 / (cummean(1 / x))
carian2996/cumstats documentation built on June 5, 2020, 9:06 a.m.