Vine(vines)
Vine()所属R语言包:vines
Create Vine Objects
创建藤对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Functions to create Vine objects.
函数来创建Vine对象。
用法----------Usage----------
Vine(type, dimension = 2, trees = dimension - 1,
copulas = matrix(list(indepCopula()),
dimension - 1, dimension - 1))
CVine(dimension = 2, trees = dimension - 1,
copulas = matrix(list(indepCopula()),
dimension - 1, dimension - 1))
DVine(dimension = 2, trees = dimension - 1,
copulas = matrix(list(indepCopula()),
dimension - 1, dimension - 1))
参数----------Arguments----------
参数:type
Type of vine. Supported values: "CVine" and "DVine".
藤本植物的类型。支持的值:"CVine"和"DVine"。
参数:dimension
See the documentation of the Vine slot.
Vine插槽的文档。
参数:trees
See the documentation of the Vine slot.
Vine插槽的文档。
参数:copulas
See the documentation of the Vine slot.
Vine插槽的文档。
参见----------See Also----------
Vine, CVine, DVine.
Vine,CVine,DVine。
实例----------Examples----------
dimension <- 3
copulas <- matrix(list(normalCopula(0.5),
claytonCopula(2.75),
tCopula(0.75, df = 2),
NULL),
ncol = dimension - 1,
nrow = dimension - 1,
byrow = TRUE)
Vine("DVine", dimension = dimension, trees = dimension - 1,
copulas = copulas)
DVine(dimension = dimension, trees = dimension - 1,
copulas = copulas)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|