#!/usr/bin/env python # coding: utf-8 # In[1]: get_ipython().run_line_magic('matplotlib', 'inline') import pandas as pd import numpy as np gapminder_r_url = "https://raw.githubusercontent.com/jennybc/gapminder/master/data-raw/07_gap-merged-with-continent.tsv" gapminder = pd.read_csv(gapminder_r_url, sep="\t") gapminder.shape # In[2]: gapminder.head() # In[3]: gapminder.lifeExp.plot.hist()