获取 HDF5 内容列表(Pandas HDFStore)
Get list of HDF5 contents (Pandas HDFStore)
我没问题select从 HDF5 商店中的 table 读取内容:
with pandas.HDFStore(data_store) as hdf:
df_reader = hdf.select('my_table_id', chunksize=10000)
如何使用 pandas 获取 table 到 select 的所有列表?
hdf.keys()
returns 与存储在 HDFStore (link)
中的对象对应的键的(可能无序的)列表
hdf.keys()
只是return组或表的名称,my_table_id
而不是列名。
我没问题select从 HDF5 商店中的 table 读取内容:
with pandas.HDFStore(data_store) as hdf:
df_reader = hdf.select('my_table_id', chunksize=10000)
如何使用 pandas 获取 table 到 select 的所有列表?
hdf.keys()
returns 与存储在 HDFStore (link)
hdf.keys()
只是return组或表的名称,my_table_id
而不是列名。