Python Seaborn lmplot ajouter le titre

sns.lmplot(x, y, data=df, hue="hue")
ax = plt.gca()
ax.set_title("Graph (a)")
Talented Tamarin