R维大于6的多元混合Copula

R维大于6的多元混合Copula,r,dependencies,mixture,R,Dependencies,Mixture,我试图用Copula包在R中构造一个多元混合Copula,目标是对金融数据集的依赖性进行建模。每当我的资产不超过6项时,这种方法就非常有效。但是,如果超过6,我会得到一个错误,即下标超出了范围。我没有在函数的文档中找到任何提示 下面是一个代码示例: library(copula) mix.cop <- mixCopula(coplist = list(gumbelCopula(1.5, dim = 7), frankCopula(1.9, dim = 7)) 有没有办法构造维数大于6的多

我试图用Copula包在R中构造一个多元混合Copula,目标是对金融数据集的依赖性进行建模。每当我的资产不超过6项时,这种方法就非常有效。但是,如果超过6,我会得到一个错误,即下标超出了范围。我没有在函数的文档中找到任何提示

下面是一个代码示例:

library(copula)
mix.cop <- mixCopula(coplist = list(gumbelCopula(1.5, dim = 7), frankCopula(1.9, dim = 7))
有没有办法构造维数大于6的多元混合copula?提前谢谢

Error in pdfL[[i]] : subscript out of bounds