Chapter 13
Chapter 13
Dimitrios Asteriou
and
Stephen G Hall
Applied Econometrics 3rd edition
Learning Objectives
1. Understand the concept of ARIMA models.
2. Differentiate between univariate and multivariate
time series models.
3. Understand the Box–Jenkins approach for model
selection in the univariate time series framework.
4. Know how to estimate ARIMA(p, d, q) models
using econometric software.
Applied Econometrics 3rd edition
ARIMA Models
Box and Jenkins (1976) first introduced ARIMA
models, the term deriving from:
• AR = autoregressive
• I = integrated
• MA = moving average.
Applied Econometrics 3rd edition
Stationarity
A key concept underlying time series processes is that of
stationarity. A time series is covariance stationary
when it has the following three characteristics:
(a) exhibits mean reversion in that it fluctuates around a
constant long-run mean;
(b) has a finite variance that is time-invariant; and
(c) has a theoretical correlogram that diminishes as the lag
length increases.
Applied Econometrics 3rd edition
Stationarity
In its simplest terms a time series Yt is said to be
stationary if:
Stationarity
Thus, these quantities would remain the same whether
observations for the time series were, for example, from
1975 to 1985 or from 1985 to 1995.
Autoregressive models
The AR(1) model
The simplest, purely statistical time series model is the
autoregressive of order one model, or AR(1) model,
which is given below:
Yt = φYt−1 + ut
Autoregressive models
The implication behind the AR(1) model is that the
time series behaviour of Yt is largely determined by
its own value in the preceding period.
Autoregressive models
• Condition for stationarity
• The AR(1) equation introduces the constraint
|φ| < 1, in order to guarantee stationarity as
defined in the previous section.
• If we have |φ| > 1, then Yt will tend to get
bigger and bigger each period and so we
would have an explosive series.
Applied Econometrics 3rd edition
Autoregressive models
Open EViews and create a new workfile by choosing File/NewWorkfile. In the
workfile range choose undated or irregular and define the start observation as
1 and the end observation as 500. To create a stationary time series process type
the following commands in the EViews command line (the bracketed comments
provide a description of each command):
Autoregressive models
4
-1
-2
-3
100 200 300 400 500
YT
Applied Econometrics 3rd edition
Autoregressive models
If we want to see the exploding series we change the phi coefficient to 1.4 and we
get
Autoregressive models
2.4E+15
2.0E+15
1.6E+15
1.2E+15
8.0E+14
4.0E+14
0.0E+00
-4.0E+14
25 50 75 100 125 150 175 200
XT
Applied Econometrics 3rd edition
Autoregressive models
The AR( p) model
• A generalization of the AR(1) model is the AR(p)
model; the number in parenthesis denotes the order
of the autoregressive process and therefore the
number of lagged dependent variables that the
model will have.
• For example, the AR(2) model will be an
autoregressive model of order two, and will have the
form:
Yt = φ1Yt−1 + φ2Yt−2 + ut
Applied Econometrics 3rd edition
Autoregressive models
Similarly the AR(3) model will be an
autoregressive model of order three, and will
have the form:
Yt = φ1Yt−1 + φ2Yt−2 + φ3Yt−3 + ut
Autoregressive models
Using the summation symbol:
Yt =ΣφiYt−i + ut
ARMA Models
The general form of the ARMA model is an
ARMA(p, q) model of the form:
or
Yt = ΣφiYt−i + ut +Σ θjut−j
Applied Econometrics 3rd edition