How can I add title on seaborn lmplot?
seaborn
uses matplotlib
under the hood, so if you want a simple answer, use:
plt.title('My Title')
Right before
plt.show()
try this:
sns.lmplot(x, y, data=df, hue="hue")
ax = plt.gca()
ax.set_title("Graph (a)")