cajools(urca)
cajools()所属R语言包:urca
OLS regression of VECM
OLS回归的VECM
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function returns the OLS regressions of an unrestricted VECM, i.e. it returns an object of class lm. The user can provide a certain number of which equation in the VECM should be estimated and reported, or if "reg.number=NULL" each equation in the VECM will be estimated and its results are reported.
该函数返回一个不受限制的VECM的OLS回归,也就是说,它返回一个对象类lm。用户可以在VECM方程应估算和报告提供一定数量,或者如果"reg.number=NULL"VECM每个方程中的将被估计,并报告其结果。
用法----------Usage----------
cajools(z, reg.number = NULL)
参数----------Arguments----------
参数:z
An object of class ca.jo or cajo.test.
对象的类ca.jo或cajo.test。
参数:reg.number
The number of the equation in the VECM that should be estimated or if set to NULL (the default), all equations within the VECM are estimated.
数方程的的VECM应估计或设置为NULL(默认值),所有在VECM方程估计。
值----------Value----------
Returns an object of class lm.
返回一个对象类lm。
(作者)----------Author(s)----------
Bernhard Pfaff
参考文献----------References----------
Journal of Economic Dynamics and Control, 12, 231–254.
Inference on Cointegration – with Applications to the Demand for Money, Oxford Bulletin of Economics and Statistics, 52, 2, 169–210.
Cointegration Vectors in Gaussian Vector Autoregressive Models, Econometrica, Vol. 59, No. 6, 1551–1580.
参见----------See Also----------
ca.jo, cajorls, lm, ca.jo-class and urca-class.
ca.jo,cajorls,lm,ca.jo-class和urca-class。
实例----------Examples----------
data(denmark)
sjd <- denmark[, c("LRM", "LRY", "IBO", "IDE")]
sjd.vecm1 <- ca.jo(sjd, ecdet = "const", type="eigen", K=2, spec="longrun",
season=4)
sjd.vecm2 <- ca.jo(sjd, ecdet = "const", type="eigen", K=2, spec="transitory",
season=4)
sjd.vecm.ols1 <- cajools(sjd.vecm1)
sjd.vecm.ols2 <- cajools(sjd.vecm2)
summary(sjd.vecm.ols1)
summary(sjd.vecm.ols2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|