pandas dataframe how to store

32

df.to_pickle(file_name)  # where to save it, usually as a .pkl
df = pd.read_pickle(file_name)

Comments

Submit
0 Comments