Theory

Autoregressive Integrated Moving Average (ARIMA)

The Autoregressive Integrated Moving Average (ARIMA) method models the next step in the sequence as a linear function of the differenced observations and residual errors at prior time steps. It combines both Autoregression (ARAR) and Moving Average (MAMA) models as well as a differencing pre-processing step of the sequence to make the sequence stationary, called integration (II). The notation for the model involves specifying the order for the AR(p)AR(p), I(d)I(d), and MA(q)MA(q) models as parameters to an ARIMA function, e.g., ARIMA(p, d, q). An ARIMAARIMA model can also be used to develop ARAR, MAMA, and ARMAARMA models. The method is suitable for univariate time series with trend and without seasonal components. Below is an example of ARIMA code implementation

Image 0

0

5

Updated 2026-07-01

Tags

Data Science