Skip to content

Instantly share code, notes, and snippets.

@jacobod
Created March 15, 2018 04:09
Show Gist options
  • Save jacobod/86e83cd9580795c2e30c26745e496b4a to your computer and use it in GitHub Desktop.
Save jacobod/86e83cd9580795c2e30c26745e496b4a to your computer and use it in GitHub Desktop.
### Load the dictionary containing the dataset
with open("final_project_dataset.pkl", "r") as data_file:
data_dict = pkl.load(data_file)
#pandas dataframe for exploration purposes
enron_df = pd.DataFrame.from_dict(data_dict,orient='index')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment