gpt4 book ai didi

python - polyfit() 获得意外的关键字参数 'w'

转载 作者:行者123 更新时间:2023-11-30 23:31:33 26 4
gpt4 key购买 nike

我正在尝试使用np.polyfit,但我不断收到错误:

TypeError: polyfit() got an unexpected keyword argument 'w'

documentation该函数清楚地提到了这个论点,所以我不确定发生了什么。我正在使用 SciPy 0.12.0NumPy 1.6.1

这是返回该错误的 MWE:

import numpy as np

x = np.array([0.0, 1.0, 2.0, 3.0, 4.0, 5.0])
y = np.array([0.0, 0.8, 0.9, 0.1, -0.8, -1.0])
weight = np.array([0.2, 0.8, 0.4, 0.6, 0.1, 0.3])

poli = np.polyfit(x, y, 3, w=weight)

最佳答案

这是reference对于您的 numpy 版本,参数“w”仅在更高版本中引入。

关于python - polyfit() 获得意外的关键字参数 'w',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19838579/

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