Seasonal ARIMA (SARIMA) extends the standard ARIMA model by incorporating seasonal components. It is expressed as:

Components

Non-seasonal part

(See ARIMA for details.)

Seasonal part

These terms allow ARIMA to model repeating seasonal patterns.

The parameter denotes the seasonal period, how often the pattern repeats (e.g., for monthly data with yearly seasonality).

  • - Seasonal Autoregressive Order Analogous to , but applies to seasonal lags. Example: If and , the model uses (the value from one year ago) to predict .

  • - Seasonal Differencing Order The number of times seasonal differencing is applied to remove seasonal trends. Example: with applies .

  • - Seasonal Moving Average Order Analogous to , but incorporates forecast errors from seasonal lags. Example: and uses the forecast error from 12 months prior.

How SARIMA Works

  1. Seasonal differencing ()

    • Remove repeating seasonal patterns to stabilize the mean.
  2. Non-seasonal differencing ()

    • Remove overall trends to make the series stationary.
  3. Fit ARMA components

    • Non-seasonal AR () and MA () capture short-term dependencies.
    • Seasonal AR () and MA () capture longer-term dependencies at seasonal lags.
  4. Combine predictions The final forecast combines seasonal and non-seasonal components.

Determining Parameters

Refer to: Tsang, G. (2020). A semi-auto way to determine parameters for SARIMA models

Practical Notes

  • SARIMA is conceptually similar to Holt–Winters exponential smoothing, but relies on more formal statistical assumptions.
  • Before estimating and , ensure the series is seasonally stationary by applying seasonal Differencing if required ().

Identifying Seasonal Orders with ACF and PACF Plots

To choose (Seasonal MA order):

  • Examine the ACF plot for significant autocorrelations at seasonal lags (multiples of ).
  • A sharp cut-off at a seasonal lag suggests the appropriate .

To choose (Seasonal AR order):

  • Examine the PACF plot for significant spikes at seasonal lags.
  • A sharp cut-off indicates the seasonal AR order .