'numpy.ndarray'对象没有属性'where'

时间:2019-01-02 21:57:00

标签: python numpy where

我的代码有问题。
这是__init__的一部分:

file = np.loadtxt(file_path,delimiter = ",",skiprows=1)
header = np.loadtxt(file_path,delimiter = ",",dtype=str)
self.data = file
self.header = header[0]

这是方法的一部分:

def hello(self,col_name)
    col = self.header.where[a == col_name]
    return col

然后我想检查是否获得标题的索引:

print (name.hello('hi'))

但得到:"AttributeError: 'numpy.ndarray' object has no attribute 'where'"

0 个答案:

没有答案