runMean: Calculate a running mean from a numeric vector.

View source: R/utilities.R

runMeanR Documentation

Calculate a running mean from a numeric vector.

Description

Calculate a running mean from a numeric vector.

Usage

runMean(x, n, edge = "NA")

Arguments

x

numeric vector to smooth.

n

the size of the window in which to smooth.

edge

How to treat edge cases where a full window is unavailable. Current options are 'NA' to fill with NAs or 'fill' to fill with original values

Value

A numeric vector of smoothed values.

Examples

x <- rnorm(1000)
y <- c(1:1000)
plot(y,x, type="l")
lines(runMean(x,50), col="red")

ahb108/rcarbon documentation built on Aug. 29, 2023, 9:21 a.m.