8.3 Autoregressive models

In a multiple regression model, we forecast the variable of interest using a linear combination of predictors. In an autoregression model, we forecast the variable of interest using a linear combination of past values of the variable. The term autoregression indicates that it is a regression of the variable against itself.

Thus, an autoregressive model of order p can be written as yt=c+ϕ1yt1+ϕ2yt2++ϕpytp+et, where et is white noise. This is like a multiple regression but with lagged values of yt as predictors. We refer to this as an AR(p) model.

Autoregressive models are remarkably flexible at handling a wide range of different time series patterns. The two series in Figure 8.5 show series from an AR(1) model and an AR(2) model. Changing the parameters ϕ1,,ϕp results in different time series patterns. The variance of the error term et will only change the scale of the series, not the patterns.

Two examples of data from autoregressive models with different parameters. Left: AR(1) with $y_t = 18 -0.8y_{t-1} + e_t$. Right: AR(2) with $y_t = 8 + 1.3y_{t-1}-0.7y_{t-2}+e_t$. In both cases, $e_t$ is normally distributed white noise with mean zero and variance one.

Figure 8.5: Two examples of data from autoregressive models with different parameters. Left: AR(1) with yt=180.8yt1+et. Right: AR(2) with yt=8+1.3yt10.7yt2+et. In both cases, et is normally distributed white noise with mean zero and variance one.

For an AR(1) model:

  • when ϕ1=0, yt is equivalent to white noise;
  • when ϕ1=1 and c=0, yt is equivalent to a random walk;
  • when ϕ1=1 and c0, yt is equivalent to a random walk with drift;
  • when ϕ1<0, yt tends to oscillate between positive and negative values;

We normally restrict autoregressive models to stationary data, in which case some constraints on the values of the parameters are required.

  • For an AR(1) model: 1<ϕ1<1.
  • For an AR(2) model: 1<ϕ2<1, ϕ1+ϕ2<1,

When p3, the restrictions are much more complicated. R takes care of these restrictions when estimating a model.