I have a huge HDF5 file, I want to load part of it in a pandas DataFrame to perform some operations, but I am interested in filtering some rows.
I can explain better
You can do this using pandas.read_hdf (here), with the optional parameter of where.For example: read_hdf('store_tl.h5', 'table', where = ['index>2'])
pandas.read_hdf
where
read_hdf('store_tl.h5', 'table', where = ['index>2'])