diff --git a/content/pandas cookbook/chapter1.md b/content/pandas cookbook/chapter1.md index 54a2186..e766e10 100644 --- a/content/pandas cookbook/chapter1.md +++ b/content/pandas cookbook/chapter1.md @@ -27,6 +27,7 @@ import pandas as pd import matplotlib.pyplot as plt pd.set_option('display.mpl_style', 'default') # Make the graphs a bit prettier +#For higher versions of pandas try plt.style.use('ggplot') plt.rcParams['figure.figsize'] = (15, 5) ```