📜  rnorm in - R 编程语言代码示例

📅  最后修改于: 2022-03-11 14:51:59.535000             🧑  作者: Mango

代码示例1
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