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?
