Example
This example demonstrates modeling monthly CO2 levels in Alert, NWT, Canada (1994-2004) using a Seasonal ARIMA model.
1. Identification
- The original time series plot shows a clear upward trend and a strong seasonal pattern.
- The ACF of the original series confirms this with strong correlations at lags 12, 24, 36, etc.
- A first difference removes the general upward trend, but strong seasonality remains.
- A seasonal difference removes the remaining seasonality. The new series appears stationary.
- The ACF of the doubly differenced series shows very little remaining autocorrelation, suggesting a simple model incorporating lag 1 and lag 12 autocorrelations might be adequate.
2. Model Specification
Based on the ACF, a multiplicative seasonal is specified.
3. Model Fitting
Let and . Then .
The fitted model is:
4. Diagnostic Checking
- Residual analysis (ACF, PACF) is performed to ensure errors resemble white noise.
- Normality of residuals is checked (e.g., via QQ plots or histograms).
- Overfitting is considered by trying a more complex model like to see if it significantly improves the fit.