我想创建 50 个相关的二元变量,其中不同的变量具有不同的边际概率:
首先我创建我的相关矩阵:
cor.mat=matrix(.9,nrow=50,ncol=50)
cor.mat[,9:11]=.1
cor.mat[9:11,]=.1
diag(cor.mat)=1
然后我使用“rmvbin”生成数据:
library(bindata)
marg=rep(c(0.4,0.6),c(25,25))
a<-rmvbin(100, margprob=marg, bincorr=cor.mat)
但是,我收到以下错误:
Error in commonprob2sigma(commonprob, simulvals) :
Matrix commonprob not admissible.
我也尝试过使用 commonprob 而不是 margprob:
common=rep(c(0.4,0.6),c(25,25))
a<-rmvbin(100, commonprob=common, bincorr=cor.mat)
但我得到:
Error in if (n != dim(commonprob)[2]) { : argument is of length zero
>
我究竟做错了什么?