In [5]:
import pandas as pd
In [6]:
df = pd.read_excel("Billionaire Characteristics Database/Billionaires1996,2001and2014updated.xlsx")
In [7]:
df.head()
Out[7]:
In [8]:
%matplotlib inline
In [10]:
df['age'].hist()
Out[10]:
In [11]:
import matplotlib.pyplot as plt
In [12]:
plt.style.available
Out[12]:
In [13]:
plt.style.use("bmh")
In [14]:
df['networthusbillion'].hist()
Out[14]:
In [ ]: