Plot Method for Cointegration Models (Modified OLS).
Plotting objects of class "cointReg"
. Currently, only the residuals
will be plotted.
## S3 method for class 'cointReg' plot(x, type, main, xlab, ylab, axes = TRUE, ...)
x |
[ |
type |
[ |
main, xlab, ylab |
[ |
axes |
[ |
... |
[ |
Other cointReg: cointRegD
,
cointRegFM
, cointRegIM
,
cointReg
, print.cointReg
set.seed(42) x = data.frame(x1 = cumsum(rnorm(200)), x2 = cumsum(rnorm(200))) eps1 = rnorm(200, sd = 2) y = x$x1 - x$x2 + 10 + eps1 deter = cbind(level = rep(1, 200)) test = cointRegFM(x = x, y = y, deter = deter) plot(test)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.