RVineSim(VineCopula)
RVineSim()所属R语言包:VineCopula
Simulation from an R-vine copula model
从R-藤Copula模型的模拟
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function simulates from a given R-vine copula model.
此功能可以模拟从一个给定的R-藤copula模型。
用法----------Usage----------
RVineSim(N, RVM)
参数----------Arguments----------
参数:N
Number of d-dimensional observations to simulate.
d维的观测,模拟数。
参数:RVM
An RVineMatrix object containing the information of the R-vine copula model.
RVineMatrix对象包含R-藤copula模型的信息。
值----------Value----------
An N x d matrix of data simulated from the given R-vine copula model.
NXD从给定的R-藤copula模型模拟的数据矩阵。
(作者)----------Author(s)----------
Jeffrey Dissmann
参考文献----------References----------
Selecting and estimating regular vine copulae and application to financial returns. Submitted for publication. http://mediatum.ub.tum.de/node?id=1079277
参见----------See Also----------
RVineMatrix, BiCopSim
RVineMatrix,BiCopSim
实例----------Examples----------
# define 5-dimensional R-vine tree structure matrix[定义5维的R-葡萄树结构矩阵]
Matrix = c(5,2,3,1,4,0,2,3,4,1,0,0,3,4,1,0,0,0,4,1,0,0,0,0,1)
Matrix = matrix(Matrix,5,5)
# define R-vine pair-copula family matrix[定义R-藤对Copula的家庭矩阵]
family = c(0,1,3,4,4,0,0,3,4,1,0,0,0,4,1,0,0,0,0,3,0,0,0,0,0)
family = matrix(family,5,5)
# define R-vine pair-copula parameter matrix[定义R-藤对Copula函数的参数矩阵]
par = c(0,0.2,0.9,1.5,3.9,0,0,1.1,1.6,0.9,0,0,0,1.9,0.5,
0,0,0,0,4.8,0,0,0,0,0)
par = matrix(par,5,5)
# define second R-vine pair-copula parameter matrix[定义第二个R-藤对Copula函数的参数矩阵]
par2 = matrix(0,5,5)
# define RVineMatrix object[定义RVineMatrix对象]
RVM = RVineMatrix(Matrix=Matrix,family=family,par=par,par2=par2,
names=c("V1","V2","V3","V4","V5"))
# simulate a sample of size 300 from the R-vine copula model[从R-藤copula模型,模拟样品的尺寸为300]
simdata = RVineSim(300,RVM)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|