4
我正在尋找模擬與現有二元變量use
相關的0.1的年齡變量(約束範圍18-35)。我所遇到的大部分示例都演示瞭如何同時模擬這兩個變量。模擬與現有二元變量相關的連續變量
# setup
set.seed(493)
n <- 134
dat <- data.frame(partID=seq(1, n, 1),
trt=c(rep(0, n/2),
rep(1, n/2)))
# set proportion
a <- .8
b <- .2
dat$use <- c(rbinom(n/2, 1, b),
rbinom(n/2, 1, a))
http://stats.stackexchange.com/questions/15011/generate-a-random-variable-with-de-defined-correlation-to-an-existing-variable – Raad
我投票結束此問題爲關閉-topic,因爲http://stats.stackexchange.com/questions/15011/generate-a-random-variable-with-dedefined-corr重複興高采烈到一個存在的可變 – zx8754