show-methods | R Documentation |
Displays the outcome of the unit root/cointegration tests.
Displays the test statistic of the Johansen procedure.
Displays the test statistic of a restricted
VAR with respect to \bold{\alpha}
and/or \bold{\beta}
.
Displays the test statistic of the Phillips and Ouliaris cointegration test.
Displays the test statistic of the Augmented, Dickey and Fuller unit root test.
Displays the test statistic of the Elliott, Rothenberg and Stock unit root test.
Displays the test statistic of the Kwiatkowski et al. unit root test.
Displays the test statistic of the Phillips and Perron unit root test.
Displays the test statistic of the augmented Dickey-Fuller unit root test.
Displays the test statistic of the Schmidt and Phillips unit root test.
Displays the test statistic of the Zivot and Andrews unit root test.
Displays the summary output.
Bernhard Pfaff
ca.jo-class
, cajo.test-class
,
ca.po-class
, ur.ers-class
,
ur.kpss-class
, ur.pp-class
,
ur.sp-class
, ur.df-class
and ur.za-class
.
data(nporg)
gnp <- na.omit(nporg[, "gnp.r"])
gnp.l <- log(gnp)
#
ers.gnp <- ur.ers(gnp, type="DF-GLS", model="trend", lag.max=4)
show(ers.gnp)
#
kpss.gnp <- ur.kpss(gnp.l, type="tau", lags="short")
show(kpss.gnp)
#
pp.gnp <- ur.pp(gnp, type="Z-tau", model="trend", lags="short")
show(pp.gnp)
#
df.gnp <- ur.df(gnp, type="trend", lags=4)
show(df.gnp)
#
sp.gnp <- ur.sp(gnp, type="tau", pol.deg=1, signif=0.01)
show(sp.gnp)
#
za.gnp <- ur.za(gnp, model="both", lag=2)
show(za.gnp)
#
data(denmark)
sjd <- denmark[, c("LRM", "LRY", "IBO", "IDE")]
sjd.vecm <- ca.jo(sjd, ecdet = "const", type="eigen", K=2, season=4)
show(sjd.vecm)
#
HD0 <- matrix(c(-1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1), c(5,4))
show(blrtest(sjd.vecm, H=HD0, r=1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.