查看 HDF5 中的列 table

View columns within a HDF5 table

目前我可以查看 HDF5 存储中的每个 table 以及 table 中的数据。

with pd.HDFStore(left_file, 'r') as hdf:
   tables = hdf.keys()
   for table in tables:
       print(hdf.select('{0}'.format(table))

但是我怎样才能得到每个 table 中的列列表?

多亏了这些视频,我对 pandas 的了解有所提高。 https://www.youtube.com/user/DrNoureddinSadawi/videos

这是我的解决方案。它列出了表及其列 headers.

with pd.HDFStore(hdfs_file, 'r') as hdf:
    tables = hdf.keys()
    for table in tables:
        print(table)
        table_data = hdf.get(table)
        column_list = table_data.columns.values
        for column in column_list:
            print(" - {0}".format(column))