web-dev-qa-db-fra.com

Comment puis-je ajouter un titre sur lmplot Seaborn?

J'essaie d'ajouter un titre sur Searbon lmplot.

ax = plt.axes()
sns.lmplot(x, y, data=df, hue="hue", ax=ax)
ax.set_title("Graph (a)")
plt.show()

Mais j'ai remarqué que lmplot n'a pas de paramètre ax . Comment puis-je ajouter un titre à mon lmplot?

8
jaykodeveloper

essaye ça:

sns.lmplot(x, y, data=df, hue="hue")
ax = plt.gca()
ax.set_title("Graph (a)")
7
MaxU
# Create lmplot
lm = sns.lmplot(x, y, data=df, hue="hue", ax=ax)

# Access the figure
fig = lm.fig 

# Add a title to the Figure
fig.suptitle("My figtitle", fontsize=12)
2
Tmu