Hallo,
I am pretty new to STATA and I would like to do a forecast for one year ahead using SARIMA model.
However, after modelling I am not able to do any forecast.
I tried fcast compute but of course does not work for SARIMA.
When I am trying forecast solve I have an info: unrecognized command: forecast
How to do the forecast for 1 year ahead using SARIMA?
I am using stata 11.2.
here is my code:
generate t=tm(2005m1)+_n-1
tsset t, monthly
arima TOTAL, arima(4,1,3) sarima(1,1,1,12)
predict p, y
predict r, resid
and what after that?
I would be grateful for any help!
Kind regards,
Kathy Kinga
I am pretty new to STATA and I would like to do a forecast for one year ahead using SARIMA model.
However, after modelling I am not able to do any forecast.
I tried fcast compute but of course does not work for SARIMA.
When I am trying forecast solve I have an info: unrecognized command: forecast
How to do the forecast for 1 year ahead using SARIMA?
I am using stata 11.2.
here is my code:
generate t=tm(2005m1)+_n-1
tsset t, monthly
arima TOTAL, arima(4,1,3) sarima(1,1,1,12)
predict p, y
predict r, resid
and what after that?
I would be grateful for any help!
Kind regards,
Kathy Kinga
Comment