Bcoef(vars)
Bcoef()所属R语言包:vars
Coefficient matrix of an estimated VAR(p)
系数矩阵的估计VAR(P)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns the estimated coefficients of a VAR(p) as a matrix.
返回一个VAR(对)的估计系数作为基质。
用法----------Usage----------
Bcoef(x)
参数----------Arguments----------
参数:x
An object of class "varest", generated by VAR().
对象类的varest,所产生的VAR()。
Details
详细信息----------Details----------
Given an estimated VAR of the form:
估计VAR的形式:
the function returns the matrices (\hat{A}_1 | … | \hat{A}_p | \hat{C}) as a matrix object.
该函数返回的矩阵(\hat{A}_1 | … | \hat{A}_p | \hat{C})作为一个矩阵对象。
值----------Value----------
A matrix holding the estimated coefficients of a VAR.
估计的VAR的系数矩阵。
注意----------Note----------
This function was named B in earlier versions of package vars; it is now deprecated. See vars-deprecated too.
此功能被命名为B在早期版本的包vars;它现在已经过时。见vars-deprecated太。
(作者)----------Author(s)----------
Bernhard Pfaff
参见----------See Also----------
Acoef, VAR
Acoef,VAR
实例----------Examples----------
data(Canada)
var.2c <- VAR(Canada, p = 2, type = "const")
Bcoef(var.2c)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|