Just as the Autocorrelation Function (ACF) and Partial Autocorrelation Function (PACF) plots helped us identify potential orders for the non-seasonal components (p,q) of ARIMA models in Chapter 3, they are also instrumental in identifying the seasonal components (P,Q) for SARIMA models. The main difference lies in which lags we pay close attention to.
When dealing with seasonality, we are interested in correlations at lags corresponding to the seasonal frequency. If a time series has a seasonal period m, it means observations m time steps apart are related. For instance:
The seasonal period m is usually determined based on the nature of the data and visual inspection of the time series plot, often showing repeating patterns at regular intervals.
To identify the seasonal orders P and Q, we examine the ACF and PACF plots specifically at lags that are multiples of the seasonal period: m,2m,3m,…
The interpretation rules are analogous to those for non-seasonal components, but applied to the seasonal lags:
Seasonal Autoregressive (AR) Order (P):
Seasonal Moving Average (MA) Order (Q):
Seasonal Differencing (D):
Imagine we have monthly data (m=12) that we suspect requires seasonal differencing (D=1). After applying this differencing, we generate the ACF and PACF plots of the differenced series.
ACF plot showing a significant negative spike at lag 12 (m=12) and smaller, insignificant values at lag 24. Non-seasonal lags (e.g., lag 1) might also be significant. The confidence interval is shown by the dashed lines.
PACF plot showing a significant negative spike at lag 12 and decaying values at further seasonal lags (lag 24 is smaller). Non-seasonal lags might also show significance.
Interpretation of Example Plots:
Based on these plots for the seasonally differenced data (meaning D=1), a potential seasonal order could be (P=0,D=1,Q=1)12. The non-seasonal orders (p,d,q) would be determined by examining the spikes at the initial lags (1, 2, 3, ...).
Remember, these plots provide guidance, not definitive answers. Often, you might need to try a few candidate models based on slightly different interpretations of the ACF/PACF plots, especially when the patterns aren't perfectly clear. The next section discusses strategies for combining these observations to select the full SARIMA(p,d,q)(P,D,Q)m order.
© 2025 ApX Machine Learning