我正在尝试用 powerlaw.py 拟合幂律:
data = [1.7, 3.2, 4.3, 2.1, 0.9, 3.3, 1.2, 4.3]
fit = powerlaw.Fit(data)
我收到警告:
IndexError: 0-d arrays can only use a single () or a list of newaxes
(and a single ...) as an index
我还测试了这些代码示例中使用的数据,但我总是遇到同样的问题。
为什么会发生这种情况?