runn_mean | R Documentation |
Function to calculate the running mean of a numeric vector
runn_mean(
vec,
runn_mean,
na.rm = FALSE,
exclude_central_value = FALSE,
FUN = mean
)
vec |
numeric vector |
runn_mean |
number of vector elements to use for calculating the running mean |
na.rm |
ignore NA values when calculating means. Defaults to FALSE. |
exclude_central_value |
exclude central value in calculating means. Defaults to FALSE. |
FUN |
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. |
numeric vector containing the running mean
Eike Luedeling
plot(runn_mean(rnorm(1000),150))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.