multispec-methods(rugarch)
multispec-methods()所属R语言包:rugarch
function: Univariate multiple GARCH Specification
功能:单变量的多元GARCH规格
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Method for creating a univariate multiple GARCH or ARFIMA specification object prior to fitting.
创建一个单变量的多元GARCH或的ARFIMA规范对象之前,拟合的方法。
用法----------Usage----------
multispec( speclist )
参数----------Arguments----------
参数:speclist
A list with as many univariate GARCH or ARFIMA specifications of class uGARCHspec and ARFIMAspec as there will be columns in the data object passed to one of the other methods which uses a multiple specification object (fitting, filtering and forecasting).
列表与尽可能多的单变量GARCH或ARFIMA规格类uGARCHspec和ARFIMAspec那样会有列中的数据对象传递给它使用一个多规范对象(嵌合,过滤的其他方法之一,并预测)。
值----------Value----------
A uGARCHmultispec or ARFIMAmultispec object containing details of the multiple GARCH or ARFIMA specifications.
AuGARCHmultispec或ARFIMAmultispec物件,其中包含的多GARCH或ARFIMA规范的细节。
(作者)----------Author(s)----------
Alexios Ghalanos
实例----------Examples----------
# how to make a list with 2 uGARCHspec objects of the same type[如何使一个与2 uGARCHspec的相同类型的对象列表]
spec = ugarchspec()
mspec = multispec( replicate(2, spec) )
# note that replicate(spec, 2) does not work...be careful about the order [注意,规范,复制(2)不小心的顺序]
# else explicity name 'n' (i.e. n = 2)[其他显式地命名为N(即n = 2)]
# or simply combine disparate objects[或简单地将不同的对象]
spec1 = ugarchspec(distribution = "norm")
spec2 = ugarchspec(distribution = "std")
mspec = multispec( c( spec1, spec2 ) )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|