标签: python numpy h5py
我有一个.h5文件正在通过h5py库在python中读取。引入数据的代码是:
file = h5py.File('example.h5','r+') data_file = file['data_1'] dates = data_file['Date']
我想获得特定日期的索引值列表。例如,日期数据集有大约300个值(超过10K),即20120304.有没有办法在不将整个数据集读入内存的情况下获取这些索引值?我的最终目标是提取日期行等于20120304的所有数据。