I'm attempting to self-study time series analysis and the SAS/ETS system. Using Proc ARIMA, I think I've established some decent methods for identifying/evaluating trend, seasonality, stationarity, and potential models.
However, today I walked through the process of fitting models automatically using the Time Series Forecasting System (point & click), and a "Winters Method -- Additive" model was suggested as the best. When I select to "Show Source Statements" nothing is shown for this model, so I'm not sure how to reproduce it programmatically (except in Proc Forecast, but I don't see how to evaluate model fit with this procedure).
My question is, how might I have identified "Winters Method -- Additive" as a candidate model, and compared with other candidate models, programmatically? I realize this may be more of a theoretical question than syntax, but either form of insight would be welcome. I'd prefer to understand the process than to rely on an automatic procedure. Thanks!
****** (update) ******
I want to add, I did read that "The ARIMA model equivalency to the additive version of Winters method is the ARIMA(0,1,p+1)(0,1,0)p model." When I tried the following code,
identify var=sales(1,12);
estimate q=13;
I get the error message that there is not enough data to fit the model. Am I misinterpreting (p+1)? Thanks again!
Message was edited by: sassygrl