I have a time series (ts) and used the MARSS package to create a state space model
fit = MARSS(ts)
giving the parameter estimates, the state estimates (fit$states
) and their
standard errors (fit$states.se
)
But these estimates are just for the historic data series.
There is a great tutorial on how to produce these matrix models.
http://cran.r-project.org/web/packages/MARSS/vignettes/Quick_Start.pdf
But how can I use the historic model output matrices to make new matrix estimates and forecast 1,2,3 periods into the future?