gpt4 book ai didi

python - 有没有人有使用 scipy.stats.distributions 的示例代码?

转载 作者:太空狗 更新时间:2023-10-29 18:30:04 24 4
gpt4 key购买 nike

我正在努力弄清楚如何使用 scipy.distributions 包,想知道是否有人可以为我发布一些示例代码。它似乎可以满足我的所有需求,只是我不知道如何使用它。

我需要生成两种分布,一种是对数正态分布,一种是泊松分布。我知道每个的方差和 lambda。

指向资源的链接同样有效。

最佳答案

我假设您指的是 scipy.stats 中的分布。要创建分布,生成随机变量并计算 pdf:

Python 2.5.1(r251:54863,2008 年 2 月 4 日,21:48:13)[GCC 4.0.1 (Apple Inc. build 5465)] on darwin键入“help”、“copyright”、“credits”或“license”以获取更多信息。

>>> from scipy.stats import poisson, lognorm
>>> myShape = 5;myMu=10
>>> ln = lognorm(myShape)
>>> p = poisson(myMu)
>>> ln.rvs((10,)) #generate 10 RVs from ln
array([ 2.09164812e+00, 3.29062874e-01, 1.22453941e-03,
3.80101527e+02, 7.67464002e-02, 2.53530952e+01,
1.41850880e+03, 8.36347923e+03, 8.69209870e+03,
1.64317413e-01])
>>> p.rvs((10,)) #generate 10 RVs from p
array([ 8, 9, 7, 12, 6, 13, 11, 11, 10, 8])
>>> ln.pdf(3) #lognorm PDF at x=3
array(0.02596183475208955)

其他方法(以及 scipy.stats 文档的其余部分)可以在新的 SciPy documentation 中找到。网站。

关于python - 有没有人有使用 scipy.stats.distributions 的示例代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/485076/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com