Guest User

Untitled

a guest
Feb 16th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. set.seed(1019) #for reproducibility
  2. s = replicate(10^6, sum(runif(3)))
  3. hist(s, prob=T, col="skyblue2", ylim=c(0,.8))
  4. curve(dnorm(x, 1.5, 1/2), add=T, lwd=2, lty="dotted", col="red")
Add Comment
Please, Sign In to add comment