Skip to content

Instantly share code, notes, and snippets.

@briandk
Created February 1, 2017 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save briandk/a3b993ecf31461d2356296cccc3359c8 to your computer and use it in GitHub Desktop.
Save briandk/a3b993ecf31461d2356296cccc3359c8 to your computer and use it in GitHub Desktop.
import pandas as pd
import seaborn as sns
flint_data = pd.DataFrame.from_csv(
'https://raw.githubusercontent.com/ComputationalModeling/intro-to-computational-modeling/master/201-spring-2017/day05-flint-water-data-analysis-day1/flint_data_with_simplified_column_names.csv?token=AAUJNLxtLQZh8meM0qSXyn4U1REp-PLAks5Ym3SjwA%3D%3D'
)
sns.distplot(flint_data['zipCode'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment