Function to calculate the running mean of a numeric vector
Usage
runn_mean(
vec,
runn_mean,
na.rm = FALSE,
exclude_central_value = FALSE,
FUN = mean
)
Value
numeric vector containing the running mean
Arguments
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.