python – 熊猫提取注释行

我有一个数据文件,其中包含前几行注释,然后是实际数据.

#param1 : val1
#param2 : val2
#param3 : val3
12
2
1
33
12
0
12
...

我可以将数据读取为pandas.read_csv(filename,comment =’#’,header = None).但是我也希望单独阅读注释行以提取读取参数值.到目前为止,我只是跳过或删除注释行,但如何单独提取注释行?

解决方法:

在read_csv的调用中你不能真的.如果您只是处理标题,则可以打开文件,提取注释行并处理它们,然后在单独的调用中读入数据.

from itertools import takewhile
with open(filename, 'r') as fobj:
    # takewhile returns an iterator over all the lines 
    # that start with the comment string
    headiter = takewhile(lambda s: s.startswith('#'), fobj)
    # you may want to process the headers differently, 
    # but here we just convert it to a list
    header = list(headiter)
df = pandas.read_csv(filename)

相关文章

转载:一文讲述Pandas库的数据读取、数据获取、数据拼接、数...
Pandas是一个开源的第三方Python库,从Numpy和Matplotlib的基...
整体流程登录天池在线编程环境导入pandas和xrld操作EXCEL文件...
 一、numpy小结             二、pandas2.1为...
1、时间偏移DateOffset对象DateOffset类似于时间差Timedelta...
1、pandas内置样式空值高亮highlight_null最大最小值高亮背景...