I am trying to overwrite the pandas framework in hdf5 file. Every time I do this, the file size increases, and the contents of the saved frame are the same. If I use mode = 'w', I have lost all other entries. Is this a mistake or am I missing something?
import pandas df = pandas.read_csv('1.csv') for i in range(100): store = pandas.HDFStore('tmp.h5') store.put('TMP', df) store.close()
The size of tmp.h5 is growing.
source share