Hi @bara ,
The model, ARIMA(0,1,1)(1,0,0)12, represents a seasonal ARIMA model with a:
first non-seasonal difference,
first-order non-seasonal moving average term, and
first-order seasonal autoregressive term.
The seasonal index for your model is 12, which is typically used for monthly time series.
In general, ARIMA models are described as: ARIMA(p,d,q)(P,D,Q)s. The lowercase p, d, q represent the non-seasonal autoregressive (p), differencing (d), and moving average (q) orders, respectively. The uppercase P, D, Q represent the seasonal autoregressive (P), differencing (D) and moving average (Q) orders, respectively.
For additional details about the mathematical model and notation for ARIMA models, please see the following link in the PROC ARIMA documentation:
https://go.documentation.sas.com/?docsetId=etsug&docsetTarget=etsug_arima_gettingstarted13.htm&docsetVersion=15.1&locale=en
I hope this helps!
DW
... View more