SARIMA MLM Flashcards
Seasonal Autoregressive Integrated Moving-Average (SARIMA)
Seasonal Autoregressive Integrated Moving-Average (SARIMA) models are a generalization of ARIMA models to handle seasonal data.
- Introduction
SARIMA stands for Seasonal Autoregressive Integrated Moving Average. These models are used for time series data that exhibits seasonal effects. They are an extension of ARIMA models.
- Autoregressive Component (AR)
The autoregressive part (AR) of SARIMA refers to the use of past values in the regression equation for the series Y. The term ‘p’ is used to denote the order of the autoregressive part of the model.
- Integrated Component (I)
The integrated part (I) in SARIMA represents the differencing of actual observations to make the time series stationary. ‘d’ is the order of differencing in the model.
- Moving Average Component (MA)
The moving average part (MA) in SARIMA represents a dependency between an observation and a residual error from a moving average model. ‘q’ is the order of the moving average part of the model.
- Seasonal Components
In addition to the non-seasonal AR, I, and MA terms, SARIMA models have additional seasonal components: SAR, SI, and SMA represented as ‘P’, ‘D’, ‘Q’, and an additional parameter ‘s’ for the periodicity of the time series (i.e., the number of periods in a season).
- Parameter Estimation
Parameters of the SARIMA model are estimated using methods such as Maximum Likelihood Estimation. The Box-Jenkins methodology can also be applied here, which involves model selection through the autocorrelation and partial autocorrelation plots.
- Forecasting
After the model has been fitted, it can be used for forecasting future points in the time series. Confidence intervals are often provided with these forecasts to indicate the uncertainty in the predictions.
- Strengths and Limitations
SARIMA models are widely used because of their ability to model a variety of time series data with a seasonal component. However, they can be sensitive to the correct specification of the seasonal order ‘s’ and other parameters. Also, SARIMA models assume linear relationships and may struggle with non-linear data.
- SARIMA in Practice
SARIMA models are used in a variety of fields, including economics, finance, environmental science, and engineering. They are especially useful for forecasting metrics that have a clear pattern of seasonality, like electricity demand, tourism arrivals, etc.