VARrep | R Documentation |
Show the VAR representation of a VECM
VARrep(object, ...)
## S3 method for class 'VECM'
VARrep(object, ...)
## S3 method for class 'VAR'
VARrep(object, ...)
object |
An object of class ‘VECM’ created by |
... |
Currently not used |
A matrix containing the parameters of the VECM under their VAR representation.
Matthieu Stigler
Hamilton (1994) Time Series Analysis, Princeton University Press
data(barry)
# VECM model:
mod_vecm <- VECM(barry, lag=2, estim="ML")
VARrep(mod_vecm)
# VAR model:
mod_var <- lineVar(barry, lag=2, I="diff")
VARrep(mod_var)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.