簡體   English   中英

如何生成具有定義相關性的雙變量分類變量?

[英]How to generate bivariate categorical variables with defined correlation?

假設我有兩個分類變量AB並且兩者都具有三個等級, 1, 2, 3與概率0.20.30.5為每個級別。 如何生成具有定義的相關性0.3的A和B的隨機雙變量數據列表? 我知道對於單變量A或B我們可以做到

A=sample(1:3, 100, T, prob=c(0.2,0.3,0.5))
B=sample(1:3, 100, T, prob=c(0.2,0.3,0.5))

我的問題是如何以cor(A,B)=0.3采樣cbind(A,B)

這是一個示例概率矩陣。 (您自己的將取決於您選擇的型號。)

# describe probabilities over the space by a matrix
set.seed(1)
nA <- 3
nB <- 3
probmat <- matrix({r<-runif(nA*nB);r/sum(r)},ncol=nB)
#            [,1]       [,2]      [,3]
# [1,] 0.04868724 0.16654119 0.1732284
# [2,] 0.06823764 0.03698311 0.1211728
# [3,] 0.10504609 0.16474081 0.1153628

這是從中抽取樣本的一種方法:

# rearrange
probs  <- c(probmat)
events <- as.matrix(expand.grid(A=1:nA,B=1:nB))

# draw samples
nSamp  <- 100
samp   <- events[sample.int(nA*nB,nSamp,prob=probs,replace=TRUE),]

下面是等效R代碼里面此ARTICAL用MATLAB例子。 您可以將pnorm()cut()應用於列,以獲取相關的離散隨機變量

# parameters
nrows  <-  10

# The desired correlation matrix
(M  <-    matrix(c(1.0,0.6,0.3,
                  0.6,1.0,0.5,
                  0.3,0.5,1.0),byrow=T,ncol=3))


#>      [,1] [,2] [,3]
#> [1,]  1.0  0.6  0.3
#> [2,]  0.6  1.0  0.5
#> [3,]  0.3  0.5  1.0

(U = chol(M))
#>      [,1] [,2]      [,3]
#> [1,]    1  0.6 0.3000000
#> [2,]    0  0.8 0.4000000
#> [3,]    0  0.0 0.8660254 

# generate a random matrix where columns have the desired correlatoin structure
matrix(rnorm(nrows*ncol(M)),ncol=ncol(M))%*%U

#>   -0.4326   -0.4089    0.0505
#>   -1.6656   -0.4187   -1.3665
#>    0.1253   -0.3955    0.4209
#>    0.2877    1.9192    2.3656
#>   -1.1465   -0.7970   -0.9976
#>    1.1909    0.8057    1.1459
#>    1.1892    1.5669    1.8695
#>   -0.0376    0.0248   -1.3678
#>    0.3273    0.1199   -1.1880
#>    0.1746   -0.5611    0.2141


# check that this works
cor(matrix(rnorm(1000000*ncol(M)),ncol=ncol(M))%*%U)

#>           [,1]      [,2]      [,3]
#> [1,] 1.0000000 0.5988445 0.2987633
#> [2,] 0.5988445 1.0000000 0.4992603
#> [3,] 0.2987633 0.4992603 1.0000000

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM