Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use R to calculate the moving average over a series of values in a matrix. The normal R mailing list search hasn't been very helpful though. What function in R or that is available as a package will allow me to calculate moving averages? Thanks

share|improve this question

2 Answers

up vote 31 down vote accepted
share|improve this answer
1  
The Rolling Means/Maximums/Medians link is broken. – Austin Salonen Jan 24 '11 at 23:51
@austin: Thanks for the hint, I fixed the link – f3lix Feb 1 '11 at 11:06
The TTR packages provides excellent moving average functions – ECII Jun 2 '12 at 16:04

Or you can simply calculate it using filter, here's the function I use:

ma <- function(x,n=5){filter(x,rep(1/n,n), sides=2)}

share|improve this answer
6  
I should point out that "sides=2" may be an important option in many people's use cases that they don't want to overlook. If you want only trailing information in your moving average, you should use sides=1. – evanrsparks Apr 2 '12 at 20:58

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.