restrict(vars)
restrict()所属R语言包:vars
Restricted VAR
受限制的VAR
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Estimation of a VAR, by imposing zero restrictions manually or by significance.
估计的VAR,通过手动或实行零限制的意义。
用法----------Usage----------
restrict(x, method = c("ser", "manual"), thresh = 2.0, resmat = NULL)
参数----------Arguments----------
参数:x
An object of class "varest" generated by VAR().
对象类的varest所产生的VAR()。
参数:method
A character, choosing the method
有个性,选择的方法
参数:thresh
If method ser: the threshhold value for the t-statistics.
如果方法ser:阈值的t统计值。
参数:resmat
If method manual: The restriction matrix.
如果方法manual:限制矩阵。
Details
详细信息----------Details----------
Given an estimated VAR object of class "varest", a restricted VAR can be obtained by either choosing method ser or manual. In the former case, each equation is re-estimated separately as long as there are t-values that are in absolut value below the threshhold value set by the function's argument thresh. In the latter case, a restriction matrix has to be provided that consists of 0/1 values, thereby selecting the coefficients to be retained in the
由于估计的VAR对象类的varest,可以通过以下方式获得受限制的VAR要么选择方法ser或manual。在前者的情况下,每个方程重新估计分别只要是t值是绝对型值低于阈值的设定值,通过该函数的参数thresh的。在后者的情况下,要提供限制矩阵具有由0/1值,从而选择的系数被保留在
值----------Value----------
A list with class attribute "varest" holding the following elements:<br>
类属性varest持下列元素:参考列表
参数:varresult
list of "lm" objects.
列表lm的对象。
参数:datamat
The data matrix of the endogenous and explanatory variables.
内源性的和解释性变量的数据矩阵。
参数:y
The data matrix of the endogenous variables
内生变量的数据矩阵
参数:type
A character, specifying the deterministic regressors.
一个字符,指定确定性的回归系数。
参数:p
An integer specifying the lag order.
一个整数,指定滞后阶数。
参数:K
An integer specifying the dimension of the VAR.
一个整数,指定尺寸的VAR。
参数:obs
An integer specifying the number of used observations.
一个整数,指定使用的观测。
参数:totobs
An integer specifying the total number of observations.
一个整数,指定若干意见。
参数:restrictions
The matrix object containing the zero restrictions provided as argument resmat.
Matrix对象的包含作为参数resmat零规定的限制。
参数:call
The call to VAR().
call到VAR()。
注意----------Note----------
Currently, the restricted VAR is estimated by OLS and not by an efficient EGLS-method.
目前,受限制的VAR用OLS估计,而不是由一个高效EGLS法。
(作者)----------Author(s)----------
Bernhard Pfaff
参考文献----------References----------
University Press, Princeton.
Analysis, Springer, New York.
参见----------See Also----------
VAR
VAR
实例----------Examples----------
data(Canada)
var.2c <- VAR(Canada, p = 2, type = "const")
## Restrictions determined by thresh[#限制的阈值确定]
restrict(var.2c, method = "ser")
## Restrictions set manually[#限制手动设置]
restrict <- matrix(c(1, 1, 1, 1, 1, 1, 0, 0, 0,
1, 0, 1, 0, 0, 1, 0, 1, 1,
0, 0, 1, 1, 0, 1, 0, 0, 1,
1, 1, 1, 0, 1, 1, 0, 1, 0),
nrow=4, ncol=9, byrow=TRUE)
restrict(var.2c, method = "man", resmat = restrict)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|