6 lines
62 B
R
6 lines
62 B
R
|
|
n <- 100000
|
||
|
|
x <- rnorm(n, mean=0, sd=1)
|
||
|
|
mean(x)
|
||
|
|
sd(x)
|
||
|
|
hist(x)
|