In [1]:
%matplotlib inline
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
sns.set_context("poster")
sns.set_style("ticks")
In [2]:
# Data Source
df = pd.read_csv('https://query.data.world/s/3qum2c3mvf9f6sbzecxu8wpa4')
In [3]:
df.head()
Out[3]:
In [4]:
df.shape
Out[4]:
In [5]:
df
Out[5]:
In [6]:
df.plot(x="Year")
plt.yscale("log")
In [ ]: