Объект 'numpy.ndarray' не имеет атрибута 'где' - PullRequest
0 голосов
/ 03 января 2019

У меня проблема с моим кодом.
Это часть __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'"

...