Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 HDF5 商店中的表中选择内容没有问题:
with pandas.HDFStore(data_store) as hdf: df_reader = hdf.select('my_table_id', chunksize=10000)
如何使用 pandas 获取所有要选择的表的列表?
hdf.keys()返回与存储在 HDFStore 中的对象对应的键的(可能无序的)列表(链接)
hdf.keys()
hdf.keys()只返回组或表的名称,my_table_id而不是列名。
my_table_id