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