R/cummean.R

Defines functions cummean

Documented in cummean

#' @title Cumulative mean
#' @description Returns a vector whose elements are the cumulative mean of the elements of the argument.
#' @param x a numeric or complex object,
#'  or an object that can be coerced to one of these.
#' @examples
#' cummean(1:10)
#'
#' @export

cummean = function(x) cumsum(x)/seq_along(x)
hope-data-science/tidyfst documentation built on Sept. 23, 2024, 8:05 p.m.