如何从R中具有特定均值的正态分布生成随机值

时间:2017-08-20 03:55:52

标签: r

我有一本关于这个等式的书,但我不知道如何将其转换为R中的代码。我想知道是否有人可以提供一个例子。

enter image description here

我想从此分发中生成随机值。

1 个答案:

答案 0 :(得分:1)

您可以使用set.seed(100) mu <- 5 # or whatever your mean is n <- 10 # the number of random values you wish to generate. x <- rnorm(n, mean = mu) #the function's default standard deviation is already 1 x [1] 4.497808 5.131531 4.921083 5.886785 5.116971 5.318630 4.418209 5.714533 [9] 4.174741 4.640138 生成随机值:

money=int(input('how much you make an hour'))
final_yearly=money*2000
print(final_yearly)