I am using Seaborn version 0.7.1 and matplotlib version 1.5.3
The following code does not display a graph in the end. Any idea how to resolve ? (works in Python CLI on my local computer)
import seaborn as sns
sns.set(style="darkgrid")
tips = sns.load_dataset("tips")
color = sns.color_palette()[2]
g = sns.jointplot("total_bill", "tip", data=tips, kind="reg",
xlim=(0, 60), ylim=(0, 12), color=color, size=7)
import matplotlib.pyplot as plt
display(plt.show())
Instead of an image, I get the words "None" shown