9.1 Impulse response function

  • IRF for ARDL(1,0) is given as

IRF={0for t=0 (period zero)β1βt13for t=1,2,..., (all future periods)

  • The impulse response function IRF of the partial adjustment model ARDL(1,0) can be represented in the table and on the figure
TABLE 9.1: Responses of yt with impulse in xt according to ARDL(1,0)
Period Response
       0        0
1 β1
2 β1β3
3 β1β23
4 β1β33
5 β1β43
                    
  • The sum of the responses in all future periods represents the long-term effect of the variable xt on the variable yt, i.e. the sum of the geometric series converges to

t=1β1βt13=β11β3

  • Let’s consider following two examples

    yt=2+0.5xt+0.6yt1+ut                       yt=2+0.5xt0.6yt1+ut

  • The impacts of the variable xt on the variable yt decline geometrically under the condition that |β3|<1, which means that the rate at which these impacts decay depends on the value of the parameter β3

  • The sign of the parameter β3 influences the shape of the impulse response function

  • In the long-run, the variables are expected to be in equilibrium or steady state

  • The long-run equilibrium equation of the partial adjustment model ARDL(1,0) is

yE=β01β3+β11β3xE

Exercise 39. Based on the partial adjustment model ARDL(1,0)

yt=2+0.5xt+0.6yt1+ut

determine:

  1. Short-run effect of xt on yt
  2. Long-run effect of xt on yt
  3. Speed of decreasing responses
  4. Equilibrium equation
Solution Short-run effect is 0.5 (the response in the first period β1=0.5). Long-run effect is 1.25 computed by formula β11β3=0.510.6=1.25. Responses in each period are decreasing at speed rate of 40% according to (β31)100%=(0.61)100%=40%. Equilibrium equation is yE=5+1.25xE.
  • IRF for a ARDL(1,1) is given as

IRF={0for t=0 (period zero)β1for t=1 (first period)(β2+β1β3)βt13for t=2,3,..., (all future periods)

  • The impulse response function IRF of the ARDL(1,1) can also be represented in the table and on the figure
TABLE 9.2: Responses of yt with impulse in xt according to ARDL(1,1)
Period Response
       0        0
1 β1
2 β2+β1β3
3 (β2+β1β3)β3
4 (β2+β1β3)β23
5 (β2+β1β3)β33
                    
  • Likewise, the sum of responses in all future periods represents the long-term effect of the variable xt on the variable yt

t=1ΔyT+tΔxt=β1+β21β3

  • Let’s consider two additional examples

yt=7+0.4xt+0.1xt1+0.5yt1+ut                       yt=7+0.4xt+0.1xt10.5yt1+ut

  • Equilibrium or long-run equation based on ARDL(1,1) is

yE=β01β3+β1+β21β3xE

  • Equilibrium state may exist only if variables are related in the long-run

  • If variables are related in the long-run then they are related in the short-run also (not necessary conversely)

  • If variables are related both in the short-run and in the long-run it is evidence of cointegration

Exercise 40. Using model ARDL(1,1)

yt=5+0.3xt+0.2xt1+0.7yt1+ut

determine:

  1. Short-run effect of xt on yt
  2. Long-run effect of xt on yt
  3. Speed of decreasing responses
  4. Equilibrium equation
Solution Short-run effect is 0.3 (the response in the first period β1=0.3). Long-run effect is 1.67 computed by formula β1+β21β3=0.3+0.210.7=1.67. Responses in each period are decreasing at speed rate of 30% according to (β31)100%=(0.71)100%=30%. Equilibrium equation is yE=16.67+1.67xE.
Exercise 41. Using the same time-series data from the object indicators estimate three models: ARDL(0,0), ARDL(1,0) and ARDL(1,1) with names static, dynamic1 and dynamic2, respectively. For that purpose apply dynlm() commad from the package dynlm, assuming that variable xt is production and variable yt is growth. Present the results of estimated models in a single table by modelsummary() command. Which model fits the data better? For all three models check if the first-order autocorrleation problem exist by employing bgtest() command from the package lmtest. Based on partial adjustment model calculate the short-run and the long-run effect of the production on the growth rate.
Solution In this example an evidence of autocorrelation problem in static model is found according to Breusch-Godfrey test of order up to 1. Opposite to that, both dynamic models dynamic1 and dynamic2 do not exhibit autocorrelation problem as it is absorbed by including lagged growth on the RHS (yt1). Note that within dynlm() command a lagged variable is computed using a lag operator L(). Partial adjustment model dynamic1 fits the data better in terms of R2 and statistical significance of the estimated parameters. According to that model a short-run effect of production to the growth rate is 0.166%, and the long-run effect is 0.574% (both effects are expressed in % as both variable xt and yt are given in percentages).
# Installing and loading dynlm package
install.packages("dynlm")
library(dynlm)

# Estimating three model by applying dynlm() command
static=dynlm(growth~production,data=indicators)
dynamic1=dynlm(growth~production+L(growth),data=indicators)
dynamic2=dynlm(growth~production+L(production)+L(growth),data=indicators)

# Presenting results in a single table
library(modelsummary) # loading the package modelsummary (if you are runing a new session)
modelsummary(list(static,dynamic1,dynamic2),stars=TRUE,fmt=4)

library(lmtest) # loading the package lmtest (if you are runing a new session)
bgtest(static)
bgtest(dynamic1)
bgtest(dynamic2)

# Short-run effect is the second coefficient from "dynamic1" model
coef(dynamic1)[2]

# Long-run effect is the ratio between the second coefficient and 1 minus the third coefficient from "dynamic1" model
coef(dynamic1)[2]/(1-coef(dynamic1)[3])