Closed MGlauer closed 6 months ago
Loading the pre-read data fails because the current implementation uses pickle.load to load a pandas dataframe.
pickle.load
Pandas is known to break its serialisation once in a while. Therefore, pandas.read_pickle should be used instead of pickle.load in order to load data frames.
pandas.read_pickle
Loading the pre-read data fails because the current implementation uses
pickle.load
to load a pandas dataframe.Pandas is known to break its serialisation once in a while. Therefore,
pandas.read_pickle
should be used instead ofpickle.load
in order to load data frames.