Hello
Do we have a differencing functionality in SSM procedure similar to the ones in PROC ARIMA?
For example, in PRCO ARIMA, I can simply define
identify var=sales(1);
to take a simple first difference of the 'sales'.
Then "ESTIMATE statements fit ARMA models to the differenced series. FORECAST statements forecast the differences and automatically sum these differences back to undo the differencing operation specified by the IDENTIFY statement, thus producing the final forecast result."
I'd like to model first difference of my response variable in PROC SSM and have it do the back-transformation for me. How can I accomplish this?
Thanks!
is