gpt4 book ai didi

python - 没有名为 statistics.distributions 的模块

转载 作者:太空宇宙 更新时间:2023-11-03 10:56:42 24 4
gpt4 key购买 nike

当我遇到这个问题时,我正在尝试使用 Sympy 统计库:

>>> from sympy.statistics.distributions import Sample
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named statistics.distributions

问题不仅出现在我的系统中,在他们的 SymPy Live Shell 中也发生了同样的问题。可以看看here .你能帮我解决这个问题吗?

最佳答案

sympy.statistics 已被移除,取而代之的是 sympy.stats。这是文档:http://docs.sympy.org/latest/modules/stats.html .

要生成数字列表的平均值,您可以使用 DiscreteUniform:

In [8]: from sympy.stats import DiscreteUniform, E

In [9]: X = DiscreteUniform("X", [1, 2, 3])

In [10]: E(X)
Out[10]: 2

关于python - 没有名为 statistics.distributions 的模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39898133/

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