Seasonality
Learn how to add seasonality to forecasts.
Using seasonality for forecasting
Seasonality refers to periodical patterns in the data, and it's a critical component of forecasting, particularly for data in which seasonal variations are big and consistent. Even though we can identify it visually, to use it for forecasting, we need a more complex model such as SARIMAX.
SARIMAX combines multiple time series components—Seasonality, Autoregression, Integration, Moving Average, and Exogenous variables. It takes essentially two parameters—order
, which refers to autoregression, integration, and moving average, and seasonal_order
, ...