Get the column names of a python numpy ndarray

梦想的初衷 提交于 2019-11-28 20:49:05

问题


Let's say I have a data file called data.txt that looks like:

TIME FX FY FZ
0    10 5  6
1    2  4  7
2    5  2  6
...

In python run:

import numpy as np

myData = np.genfromtxt("data.txt", names=True)

>>> print myData["TIME"]
[0, 1, 2]

The names at the top of my data file will vary, so what I would like to do is find out what the names of my arrays in the data file are. So I would like something like:

>>> print myData.names
[TIME, F0, F1, F2]

I thought about just to read in the data file and get the first line and parse it as a separate operation, but that doesn't seem very efficient or elegant.


回答1:


Try:

myData.dtype.names

This will return a tuple of the field names.

In [10]: myData.dtype.names
Out[10]: ('TIME', 'FX', 'FY', 'FZ')


来源:https://stackoverflow.com/questions/7561017/get-the-column-names-of-a-python-numpy-ndarray

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!