My objective to convert is to convert a hdf5 (size ~ 2.5 GB) file into csv file. I thought I can do it with the python.
I tried this code:
import pandas
df_test = pandas.read_hdf("event.h5" ,start=1100000,stop=1150000)
But I got an error stating "MemoryError: Unable to allocate 17.2 GiB for an array with shape (2101, 1100000)" . Can any provide me alternate suggestion how can I read hdf5 file and convert into csv ?