Learn R Programming

HelpersMG (version 5.1)

MovingWindow: Return a moving average of a vector.

Description

Return a moving average of a vector./cr hole parameter can be none, bothL, bothR, both, begin, end.

Usage

MovingWindow(x, window, hole = "begin", fill = TRUE, FUN = mean)

Arguments

x

The vector to analyze

window

The window size

hole

Should the returned vector have the same length than x

fill

TRUE or FALSE, should the vector return NA

FUN

Function to apply to the window

Value

A vector

Details

MovingWindow returns a moving average of a vector.

Examples

Run this code
# NOT RUN {
MovingWindow(1:10, window = 4, fill = TRUE, hole="bothL")
MovingWindow(1:10, window = 4, fill = TRUE, hole="bothR")
MovingWindow(1:10, window = 4, fill = TRUE, hole="both")
MovingWindow(1:10, window = 4, fill = TRUE, hole="none")
MovingWindow(1:10, window = 4, fill = TRUE, hole="begin")
MovingWindow(1:10, window = 4, fill = TRUE, hole="end")
MovingWindow(1:10, window = 4, fill = TRUE, hole="end", FUN=sd)
# }

Run the code above in your browser using DataLab