Nothing
#' @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.
#' @return A numeric vector
#' @examples
#' cummean(1:10)
#'
#' @export
cummean = function(x) cumsum(x)/seq_along(x)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.