Return a moving average of a vector./cr hole parameter can be none, bothL, bothR, both, begin, end.
MovingWindow(x, window, hole = "begin", fill = TRUE, FUN = mean)
The vector to analyze
The window size
Should the returned vector have the same length than x
TRUE or FALSE, should the vector return NA
Function to apply to the window
A vector
MovingWindow returns a moving average of a vector.
# 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