gpt4 book ai didi

python - 为什么 stats.sem() 不能识别 nan_policy 关键字?

转载 作者:太空狗 更新时间:2023-10-30 02:57:35 26 4
gpt4 key购买 nike

代码:

e = [1, 2, 3, 4, 5]
s = stats.sem(e, nan_policy = 'omit')

错误:

sem() got an unexpected keyword argument 'nan_policy'

我不明白为什么会出现此错误; 'nan_policy' 是一个完美的 acceptable stats.sem() 的参数。

最佳答案

scipy.stats.sem 仅在 0.17.0 版本中获取关键字参数 nan_policy。您很可能像许多人一样使用 0.16.0 版,在这种情况下,您只能访问其他两个关键字参数 axisddof

From the release notes for 0.17.0 :

Many functions in scipy.stats have gained a nan_policy keyword, which allows specifying how to treat input with NaNs in them: propagate the NaNs, raise an error, or omit the NaNs.

不幸的是,您必须自己处理充满 NaN 的输入。

关于python - 为什么 stats.sem() 不能识别 nan_policy 关键字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36669783/

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