在生成mvrnorm分布后的R中,Y,Y [,1]做什么?

时间:2017-10-20 02:35:17

标签: r simulation

我已经生成了一个mvrnorm分布并将其分配给Y. Y [,1]和Y [,2]做了什么?

1 个答案:

答案 0 :(得分:0)

您从多元正态分布中提取样本。例如在双变量情况下

x <- mvrnorm(
    n = 500, 
    mu = c(1, 2), 
    Sigma=matrix(c(4, 2, 2, 3), ncol = 2))

x[, 1]x[, 2]是两个联合正态分布式变量。

ggplot(data.frame(x1 = x[, 1], x2 = x[, 2]), aes(x1, x2)) + geom_density_2d()

enter image description here