Seasonal ARIMA with Classic Airline Passenger Dataset
Created by Dr. Pedram Jahangiry | Enhanced with Claude
This tool approximates how a Seasonal ARIMA model behaves on the classic Box-Jenkins airline passenger counts (1949-1960), directly in your browser. Move the sliders for the orders and seasonal period below and the chart redraws the forecast against the actual monthly data, so you can see exactly how each parameter changes what the model captures.
SARIMA (Seasonal ARIMA) extends ARIMA by adding seasonal components to capture repeating patterns at fixed intervals (like monthly or quarterly seasonality).
Educational Insight: The optimal model SARIMA(1,1,0)(0,1,0)₁₂ uses:
• d=1 to remove the trend through first differencing
• D=1 to remove seasonal pattern through seasonal differencing
• p=1 for short-term AR(1) autocorrelation
• P=0, Q=0 meaning seasonal differencing alone handles seasonality without additional AR/MA terms
• This is a parsimonious model that captures both trend and seasonality efficiently