Which of these pictures come from a random normal distribution and which come from a mixed distribution?
plot(rnorm,-3,3);
mix <- function(x) {
rnorm(x)+rnorm(x-3)
}
plot(mix(x), -3,3);
Posted on Friday, 27 August 2010
Which of these pictures come from a random normal distribution and which come from a mixed distribution?
plot(rnorm,-3,3);
mix <- function(x) {
rnorm(x)+rnorm(x-3)
}
plot(mix(x), -3,3);

3 notes
