rnorm en r

bellCurve = rnorm(n, mean = 0, sd = 1)
hist(bellCurve)
# n : number of samples
# mean : mean of the resulting distribution
# sd : standard deviation of the resulting distribution
Rocku0