关于python 3中的hurst指数代码的问题

时间:2016-06-18 10:39:22

标签: python

当我在Python 3中运行此代码时,为什么它显示名称“滞后”未定义?

Sub Importdata()
Open "C:\Users\apple\desktop\12345.txt" For Input As #1
r = 0
  Do Until EOF(1)
    Line Input #1, Data
    ActiveCell.Offset(r, 0) = Data
    r = r + 1
  Loop
Close #1
End Sub

1 个答案:

答案 0 :(得分:1)

看起来你没有正确导入numpy。

将其添加到代码顶部:

PartitionKey

然后将所有调用更改为:

import numpy as np

或者如果您只想导入您需要的那些:

np.polyfit(...)
np.sqrt(...)