Forecasting using Seasonal ARIMA means fitting a SARIMA model whose seasonal period matches the data, then producing future values that can continue the historical seasonal shape as well as any non-seasonal movement the model allows.
Forecasting using Seasonal ARIMA means fitting a SARIMA model whose seasonal period matches the data, then producing future values that can continue the historical seasonal shape as well as any non-seasonal movement the model allows.
Two years of monthly sales with a yearly peak can be fit with a small SARIMA and m = 12, using the last year as a hold-out if the series is long enough.
If the historical series peaks every December, a useful SARIMA forecast should still show a similar seasonal wiggle, unless the data have clearly changed. If the forecast is a flat line while the history is strongly seasonal, the seasonal orders or m may be wrong. Performance is still judged by error measures on hold-out dates, not by how attractive the in-sample plot looks.
A forecast interval is a model-based range for a future observation. It is not a promise that the actual value must fall inside the band.
Constructed 72 monthly points with trend and a yearly wave (airline-passenger-like in spirit, not a downloaded file). A small SARIMA is fit on the first 60 months. Expected display: a model summary, a 12-month forecast line that still wiggles yearly, and a hold-out MAE. Exact MAE depends on the run.
For monthly seasonal forecasting, state m = 12, fit on earlier months, and check that the forecast still follows the seasonal pattern and is evaluated on later months.
| Term | Short definition / exam point |
|---|---|
| Autocorrelation | Correlation of a series with its lagged values. |
| Partial autocorrelation | Lag-k correlation after accounting for intermediate lags. |
| AR | Current value depends on past values. AR(1): Xt = c + φ Xt−1 + εt. |
| MA | Current value depends on past errors. MA(1): Xt = μ + εt + θ εt−1. |
| ARMA | AR + MA for a roughly stationary series; orders (p, q). |
| ARIMA | ARMA plus differencing; orders (p, d, q). d is not always needed. |
| Forecasting using ARIMA | Fit on training dates, check residuals, forecast, evaluate on later dates. |
| Seasonal data | Repeating pattern at known period m. Not the same as trend or cycle. |
| SARIMA | Seasonal ARIMA: (p, d, q)(P, D, Q)m. |
| Forecasting using SARIMA | Include m, possibly seasonal differencing, then forecast and evaluate. |
Compact model-selection intuition: