Skip to content

Instantly share code, notes, and snippets.

@SubhadityaMukherjee
Created March 16, 2023 18:51
Show Gist options
  • Select an option

  • Save SubhadityaMukherjee/8a190516890398194e6f836df6f41be3 to your computer and use it in GitHub Desktop.

Select an option

Save SubhadityaMukherjee/8a190516890398194e6f836df6f41be3 to your computer and use it in GitHub Desktop.

Revisions

  1. SubhadityaMukherjee created this gist Mar 16, 2023.
    6 changes: 6 additions & 0 deletions tbpickle.py
    Original 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)