I uploaded a dataset that is stored in .h5 files. I need to store only certain columns and be able to manipulate the data in it.
To do this, I tried loading it into the pandas framework. I tried to use:
pd.read_hdf(path)
But I get: No dataset in HDF5 file.
I found answers to SO ( read HDF5 file on pandas DataFrame with conditions ), but I do not need conditions, and the answer adds conditions as the file was written, but I am not the creator of the file, so I can not do anything about it.
I also tried using h5py:
df = h5py.File(path)
But this is not easy to manipulate, and I cannot get columns from it (only column names with df.keys()) Any idea on how to do this?