我的数据集是csv文件。 其中一些有元数据的注释行,不一定是第一行。
此时我用numpy.genfromtxt导入它们,效果很好。 但是,我希望能够导入注释行以扫描它们的某些标准。
有一种简单的方法吗?
举个例子:
''' Beginning of File '''
' comment tag ' ' Name of colums'
' comment tag '' Something i don't care about '
' comment tag '' Something i care about '
' Data '
''' End of file '''
然后我想做这样的事情:
if ' Something i care about ' == ' criteria':
do_something