Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to compute a moving average over a certain time window without generating NAs at the beginning of the time series. For instance, if I set the time window to 3, the 2 first observations will have NAs. What I want is to have a time window of 1 for the first observation, 2 for the second observation, and then 3 for all the remaining observations.

My current code:

#example data
x <- c(3,9,2,8,4,6,5,8)
#moving average with time window of length 3
(ma3 <- filter(x,rep(1/3,3),sides=1))
share|improve this question
2  
Shouldn't it be rep(1/3, 3)? – krlmlr Feb 17 at 22:06
Indeed. I edited my question – cwarny Feb 17 at 23:16

4 Answers

I don't see a way other than brute-force:

Using rollapply from package zoo instead of filter:

c(x[1], mean(x[1:2]), rollapply(x, width=3, FUN=mean))
share|improve this answer
Or staying with base R you could do: ma3 <- c(x[1], mean(x[1:2]),filter(x,rep(1/3,3),sides=1)[3:length(x)]) – thelatemail Feb 17 at 22:49

Let me jump on the rollapply train, too:

> rollapply(c(NA, NA, x), width=3, FUN=mean, na.rm=T)
[1] 3.000000 6.000000 4.666667 6.333333 4.666667 6.000000 5.000000 6.333333

Prepending two = 3-1 NA values and using na.rm=T has the effect of extending the time series but ignoring the new values for calculating the mean. A slightly more difficult but otherwise equivalent syntax

> rollapply(c(NA, NA, x), width=3, FUN=function(v) mean(v, na.rm=T))

Thanks to Matthew for pointing this out.

share|improve this answer
1  
And it is still present! Look at what rollapply does with ... – Matthew Lundberg Feb 17 at 22:17

Add zero's to the beginning and ending of your sequence with the size of the moving average. This will prevent NAs.

share|improve this answer
1  
...but yield incorrect results, e.g. only 1/3 of the first observation will be reported. – krlmlr Feb 17 at 22:07
2  
You should see this: stackoverflow.com/questions/743812/… – Daniel Feb 17 at 22:12
Thanks for the link, but what exactly I am supposed to see? – krlmlr Feb 17 at 22:22
There are some functions other than filter that might do what you want; not sure though.... – Daniel Feb 17 at 22:31

A custom function in base R to get you there:

movavg.grow <- function(x,window,sides) {
 startma <- sapply(1:(window-1),function(y) mean(test [1:y]))
 c(startma,filter(x,rep(1/window,window),sides=sides)[window:length(x)])
}

Test it:

> test <- c(3,9,2,8,4,6,5,8)
> movavg.grow(x=test,window=3,sides=1)
[1] 3.000000 6.000000 4.666667 6.333333 4.666667 6.000000 5.000000 6.333333
share|improve this answer
Great, thank you! – cwarny Feb 18 at 15:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.