根据Pandas页面上的文档,我们可以将值列表传递给Pandas系列中的分位数函数。
ru_RU.UTF-8
在我的系统上尝试相同的操作时,我收到以下错误。
>>> s = Series([1, 2, 3, 4])
>>> s.quantile(.5)
2.5
>>> s.quantile([.25, .5, .75])
0.25 1.75
0.50 2.50
0.75 3.25
dtype: float64
提前致谢。
答案 0 :(得分:1)
我认为您正在使用的SciPy版本存在问题。只需查看一下,哪个版本的SciPy,你当前的熊猫版本依赖于它,并相应地更新SciPy库。