While ARIMA models are effective for many time series, they often fall short when dealing with data exhibiting strong seasonal patterns – predictable cycles that repeat over a fixed period, such as monthly or quarterly variations.
This chapter introduces Seasonal ARIMA (SARIMA), an extension specifically designed to model and forecast time series data with seasonal components. We will cover how SARIMA incorporates seasonal terms alongside the non-seasonal components you learned about with ARIMA.
You will learn to:
statsmodels
library.By the end of this chapter, you will be able to apply SARIMA models to effectively analyze and predict time series influenced by seasonality.
5.1 Limitations of ARIMA with Seasonal Data
5.2 Introduction to Seasonal ARIMA (SARIMA)
5.3 Identifying Seasonal Components (ACF/PACF)
5.4 Selecting SARIMA Order (p, d, q)(P, D, Q)m
5.5 Fitting SARIMA Models in Python
5.6 Diagnosing SARIMA Models
5.7 Forecasting with SARIMA
5.8 Hands-on Practice: Building a SARIMA Model
© 2025 ApX Machine Learning