Created
March 16, 2023 18:51
-
-
Save SubhadityaMukherjee/8a190516890398194e6f836df6f41be3 to your computer and use it in GitHub Desktop.
Revisions
-
SubhadityaMukherjee created this gist
Mar 16, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ import pickle with open("pickled_df.pkl", "wb+") as f: pickle.dump(combined_df, f) with open("pickled_df.pkl", "rb+") as f: combined_df = pickle.load(f)