Frustrating hour of trying to figure this out. Any idea how to show a title on a jointplot in seaborn?
title = "How long does it take to show a title with seaborn?"
g = sns.jointplot(x, y, space=0, color="b")
g.set_title = title
plt.show()
Also tried:
plt.title = title
set_title(title))