Pandas DataFrame cara menyimpan
df.to_pickle(file_name) # where to save it, usually as a .pkl
df = pd.read_pickle(file_name)
Real Raccoon
df.to_pickle(file_name) # where to save it, usually as a .pkl
df = pd.read_pickle(file_name)