Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在多元情况下使用偏态正态分布生成随机数?
使用 R 包中的rsn函数sn(我认为另一个问题 R 也适用于你):
rsn
sn
rsn(n=100, location=1.256269, scale=1.605681, shape=5)
n将从具有所需位置、比例和形状的偏正态分布生成 100 ( ) 个随机数。使用更高的样本量进行绘图,例如:
n
hist(rsn(n=10000, location=1.256269, scale=1.605681, shape=5))