Hi!
How can I interpret the seasonal ARIMA Model (0,1,1)(1,0,0)[12] ?
The P=1 for the seasonal part of the model means that the current observation is correlated with themselves at lag = number of periods in the season.
For example, if you are using monthly data then the current observation is correlated to itself at lag = 12.
Likewise, if you are using quarterly data, then the auto-correlation would be at lag = 4.
Hi @bara ,
The model, ARIMA(0,1,1)(1,0,0)12, represents a seasonal ARIMA model with a:
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:
I hope this helps!
DW
@dw_sas thanks,
p=1 in the non seasonal ARIMA part indicates that the current observations of the series are correlated with themselves at lag 1
what is mean if P=1 in the seasonal ARIMA part ?
The P=1 for the seasonal part of the model means that the current observation is correlated with themselves at lag = number of periods in the season.
For example, if you are using monthly data then the current observation is correlated to itself at lag = 12.
Likewise, if you are using quarterly data, then the auto-correlation would be at lag = 4.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.