Function to calculate the running mean of a numeric vector
runn_mean(
vec,
runn_mean,
na.rm = FALSE,
exclude_central_value = FALSE,
FUN = mean
)
numeric vector containing the running mean
numeric vector
number of vector elements to use for calculating the running mean
ignore NA values when calculating means. Defaults to FALSE.
exclude central value in calculating means. Defaults to FALSE.
function to be applied. For a running mean, this is usually mean (the default), but other functions can also be specified here (the na.rm parameter won't work then, and the function has to be dependent on one numeric variable only.
Eike Luedeling
plot(runn_mean(rnorm(1000),150))
Run the code above in your browser using DataLab