Wed

07

Nov

2012

Toda-Yamamoto implementation in 'R'

When it comes to causality tests, the typical Granger-causality test can be problematic. Testing for Granger-causality using F-statistics when one or both time series are non-stationary can lead to spurious causality (He & Maekawa, 1999). 

 

Professor Giles gives an excellent example of how the TY method can be implemented. 

 

More formal explanations can be found in the original TY (1995) paper or for example here

 

In this post, I will show how Professor Giles' example can be implemented in R. 

 

The procedure is based on the following steps: 

 

1. Test for integration (structural breaks need to be taken into account). Determine max order of integration (m). If none of the series in integrated, the usual Granger-causality test can be done. 

 

2. Set up a VAR-model in the levels (do not difference the data). 

 

3. Determine lag length. Let the lag length be p. The VAR model is thus VAR(p).

 

4. Carry out tests for misspecification, especially for residual serial correlation. 

 

5. Add the maximum order of integration to the number of lags. This is the augmented VAR-model, VAR(p+m). 

 

6. Carry out a Wald test for the first p variables only with p degrees of freedom. 

 

You may want to do a test of cointegration. If series are cointegrated, there must be a causality. However, Toda and Yamamoto (1995) noted that one advantage of the TY-method is that you don't have to test for cointegration and, therefore, a pretest bias can be avoided.

 

__________

 

The example is about causalities between prices in Robusta and Arabica coffee. The excel-file can be downloaded here. But in order to be loaded into R, the data should be put in the csv. format. The csv. file is available here

 

Update: If you want examine the data interactively, have a look here.

 

The script below tests for causality between these two time series. The script is annotated, but let me know if I can clarify anything or if there is room for improvement. 

 

 


library(fUnitRoots)
library(urca)
library(vars)
library(aod)
library(zoo)
library(tseries)

#Load data
cof <- read.csv("http://www.christophpfeiffer.org/app/download/6938079586/coffee_data.csv", header=T,sep=";")
names(cof)

#Adjust Date format
cof["Date"]<-paste(sub("M","-",cof$Date),"-01",sep="")

#Visualize
plot(as.Date(cof$Date),cof$Arabica,type="l",col="black",lwd=2)
lines(as.Date(cof$Date),cof$Robusta,col="blue",lty=2,lwd=1)
legend("topleft",c("Arabica","Robusta"),col=c("black","blue"),lty=c(1,2),lwd=c(2,1),bty="n")

#Possible structural break in 1970s. Therefore only values from 1976:01 onwards are regarded
cof1<-cof[193:615,]

#Visualize
plot(as.Date(cof1$Date),cof1$Arabica,type="l",col="black",lwd=2,ylim=range(cof1$Robusta))
lines(as.Date(cof1$Date),cof1$Robusta,col="blue",lty=2,lwd=1)
legend("topright",c("Arabica","Robusta"),col=c("black","blue"),lty=c(1,2),lwd=c(2,1),bty="n")

#Test for unit roots
adf.test(cof$Arabica)
adf.test(cof$Robusta)
kpss.test(cof$Arabica)
kpss.test(cof$Arabica)

adf.test(diff(cof$Arabica,1))
adf.test(diff(cof$Robusta,1))
kpss.test(diff(cof$Arabica,1))
kpss.test(diff(cof$Robusta,1))

# Since first order differencing eliminates the unit root, the maximum order of integration
# is concluded to be I(1).

#Set up VAR-Model
#select lag order // either 2 or 6
VARselect(cof1[,2:3],lag=20,type="both")

#VAR Model, lag=2
V.2<-VAR(cof1[,2:3],p=2,type="both")
serial.test(V.2)

#VAR-Model, lag=6
V.6<-VAR(cof1[,2:3],p=6,type="both")
serial.test(V.6)

# Model with p=6 is less likely to be serially correlated. Thus model with p=6 is selected. 

# Model with additional lag is set up. 
V.7<-VAR(cof1[,2:3],p=7,type="both")

# Wald-test for the first 6 lags 
# VAR model is seperately set up as a linear model; makes the wald test easier

#lag variables
arab<-zoo(cof1["Arabica"])
robu<-zoo(cof1["Robusta"])

arab.l<-lag(arab,-(0:7),na.pad=T)
robu.l<-lag(robu,-(0:7),na.pad=T)

lm1<-lm(arab~arab.l[,2:8]+robu.l[,2:8]+index(arab))
lm2<-lm(robu~arab.l[,2:8]+robu.l[,2:8]+index(arab))

#Wald-test (H0: Robusta does not Granger-cause Arabica)
vcov(lm1)
wald.test(b=coef(lm1), Sigma=vcov(lm1), Terms= c(9:14),df=6)
# Could not be rejected (X2=8.6; p=0.2)

#Wald.test (H0: Arabica does not Granger-cause Robusta)
vcov(lm2)
wald.test(b=coef(lm2), Sigma=vcov(lm2), Terms= c(2:7),df=6)
# Could be rejected at 10% (X2=12.3; p=0.056)

# It seems that Arabica Granger-causes Robusta prices, but not the other way around. 



You can download the R-code as well as the csv. file in "Files".

 

Let me know if you have any suggestions. 

 

--- C

 

 

References

 

He, Z.; Maekawa, K. (1999). On spurious Granger causality. Economic letters, 73(3), 307–313.

 

Toda H.Y.; Yamamoto T. (1995). Statistical inference in vector autoregressions with possibly integrated processes. Journal of Econometrics, 66, 225–250. 

 


 

Write a comment

Comments: 11

  • #1

    Dave Giles (Wednesday, 07 November 2012 23:42)

    Christoph. This is just great! Thanks for sharing this.

  • #2

    Claudio D. Shikida (Thursday, 08 November 2012 16:10)

    Just change this for the tests.

    It's not adf.test, but ur.df. For example:

    ur.df(cof$Arabica)
    ur.df(cof$Robusta)
    ur.kpss(cof$Arabica)
    ur.kpss(cof$Arabica)

    Great job! Thanks!

  • #3

    Christoph (Thursday, 08 November 2012 17:38)

    Claudio, thanks for pointing out.

    adf.test(), kpss.test() work es well, but we need the "tseries" package loaded. Should be fine now.

  • #4

    Cindy M. (Thursday, 06 December 2012 17:53)

    Thanks for sharing this! Two questions for you.
    In lm1<-lm(arab~arab.l[,2:8]+robu.l[,2:8]+index(arab)) , can you please explain why you need to have the index(arab) term in the regression?


    Also in:
    >#Wald.test (H0: Arabica does not Granger-cause Robusta)
    >vcov(lm2)
    >wald.test(b=coef(lm1), Sigma=vcov(lm1), Terms= c(2:7),df=6)

    Should this wald.test be using lm2 instead of lm1?

  • JimdoBusiness
    #5

    christophpfeiffer (Thursday, 06 December 2012 18:08)

    Hi Cindy,

    thanks for the catch, it is indeed lm2 and not lm1.

    index(arab) caputres the trend index(robu) would of course also work and yields the same result.

    -- Christoph

  • #6

    Cindy M. (Thursday, 06 December 2012 18:23)

    Thanks for the quick response!

  • #7

    london (Thursday, 21 March 2013 20:12)

    Dear Christoph,
    I used the code on a data set which has 22 observations and 9 variables all variables entering into the vAR model. I determined p=k+dmax=3. this gives me 27 coefficient estimates. I have NAs in the results. Just wondering if I am doing something wrong or overfitting?

  • JimdoBusiness
    #8

    christophpfeiffer (Thursday, 21 March 2013 21:52)

    Hi,

    it seems that you have relatively few observations which makes statistical analysis difficult. Any chance obtain more data? Have you considered bootstrapping?

    -- Christoph

  • #9

    london (Thursday, 21 March 2013 23:31)

    Dear Christoph,

    I am trying to run a bootstrap regression, however, the regression is producing NAs in place of coefficients for the last 2 coefficients after every bootstrap.

    would appreciate any suggestion!

  • JimdoBusiness
    #10

    christophpfeiffer (Friday, 22 March 2013 17:32)

    If you like, you can send me your R-code and the data and I'll have a look.

    christophpp@gmail.com

  • #11

    london (Friday, 22 March 2013 23:54)

    Dear Christoph,
    Many thanks, I will email you my code and data set.

  • loading