Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

Does anybody have a good example for Time Series Forecasting/smoothing using Kalman Filter in R?

share|improve this question

3 Answers

Have you looked at Time Series Task View at CRAN?

It lists several entries for packages covering Kalman filtering:

There are also other packages

and possibly more as this is a pretty common techique for time series estimation.

share|improve this answer

In addition to the packages mentioned in other answers, you may want to look at package forecast which deals with a particular class of models cast in state-space form and package MARSS with examples and applications in biology (see in particular the well-writen manual, Chap. 5).

For general applications, I aggree, though, with the previous answers, with dlm being in my view a versatile and powerful package (well described in the book Dynamic Linear Models in R, by Petris et al.), KFAS offering routines which implement most of the algorithms described in the excellent Time Series Analysis by State Space Methods and FKF with limited facilities and no examples, but being the fastest.

share|improve this answer
1  
Thanks all, the book Dynamic Linear Models in R, by Petris et al has high S/N ratio. – Aaron Nov 8 '10 at 20:15

For good examples look at the dlm vignette I would avoid all the other packages if you don't have a clear idea of what you want to do and how.

share|improve this answer
+1, I always recommend dlm and its vignette. The bottom line is that DLM's are much more like programming than most other methods. If you intend to do anything beyond basic modeling and forecasting, you will have to understand the matrices (state space programs in some sense) and methods that dlm is generating for you. Most other packages handle the processing of your matrices but expect you to understand how to make them. – Wayne Sep 27 '11 at 14:19

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.