I decided to try out Seaborn's pairplot, but the following line of code (https://stanford.edu/~mwaskom/software/seaborn/generated/seaborn.pairplot.html) is giving me a plot without the data appearing:
>>> import matplotlib.pyplot as plt
>>> import seaborn as sns; sns.set(style="ticks", color_codes=True)
>>> sns.set(font='monospace')
>>> iris = sns.load_dataset("iris")
>>> g = sns.pairplot(iris)
>>> plt.show()
What is going on with my plot?
You have encountered a bug in matplotlib 1.3. The solution is to upgrade your matplotlib.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With