stability(vars)
stability()所属R语言包:vars
Structural stability of a VAR(p)
结构稳定的VAR(P)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes an empirical fluctuation process according to a specified method from the generalised fluctuation test framework. The test utilises the function efp() and its methods from package "strucchange".
计算的实证波动过程中,根据指定的方法从广义的波动测试框架。测试使用的功能efp()和方法,从包strucchange。
用法----------Usage----------
stability(x, type = c("OLS-CUSUM", "Rec-CUSUM", "Rec-MOSUM",
"OLS-MOSUM", "RE", "ME", "Score-CUSUM", "Score-MOSUM",
"fluctuation"), h = 0.15, dynamic = FALSE, rescale = TRUE)
参数----------Arguments----------
参数:x
Object of class "varest"; generated by VAR().
类的varest的对象,所产生的VAR()。
参数:type
Specifies which type of fluctuation process will be computed, the default is "OLS-CUSUM". For details see: efp.
指定哪种类型的波动过程将被计算,则默认为OLS-CUSUM。有关详细信息,请参阅:efp。
参数:h
A numeric from interval (0,1) sepcifying the bandwidth. Determins the size of the data window relative to sample size (for "MOSUM" and "ME" processes only).
一个数字从间隔(0,1)sepcifying的的带宽。 Determins的数据窗口的大小相对于样本量(仅适用于MOSUM和ME过程)。
参数:dynamic
Logical. If "TRUE" the lagged observations are included as a regressor.
逻辑。如果TRUE作为回归量的滞后意见。
参数:rescale
Logical. If "TRUE" the estimates will be standardized by the regressor matrix of the corresponding subsample; if "FALSE" the whole regressor matrix will be used. (only if "type" is either "RE" or "E").
逻辑。如果TRUE估计将是标准化的回归量矩阵的相应的子样本,如果FALSE整个的回归量矩阵的将被使用。 (只有当type是RE或E)。
Details
详细信息----------Details----------
For details, please refer to documentation efp.
有关详细信息,请参阅文档efp。
值----------Value----------
A list with class attribute "varstabil" holding the following elements:<br>
类属性varstabil持下列元素:参考列表
参数:stability
A list with objects of class "efp"; length is equal to the dimension of the VAR.
列表的对象类的efp;长度尺寸的VAR是平等的。
参数:names
Character vector containing the names of the endogenous variables.
字符向量的内生变量的名称。
参数:K
An integer of the VAR dimension.
一个整数的VAR尺寸。
(作者)----------Author(s)----------
Bernhard Pfaff
参考文献----------References----------
An R Package for Testing for Structural Change in Linear Regression Models, Journal of Statistical Software, 7(2): 1-38, http://www.jstatsoft.org/v07/i02/
<code>efp</code>, too.
参见----------See Also----------
VAR, plot, efp
VAR,plot,efp
实例----------Examples----------
data(Canada)
var.2c <- VAR(Canada, p = 2, type = "const")
var.2c.stabil <- stability(var.2c, type = "OLS-CUSUM")
var.2c.stabil
## Not run: [#不运行:]
plot(var.2c.stabil)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|