Searbon lmplotにタイトルを追加しようとしています。
ax = plt.axes()
sns.lmplot(x, y, data=df, hue="hue", ax=ax)
ax.set_title("Graph (a)")
plt.show()
しかし、lmplot
にはax
パラメータがないことに気付きました。 lmplotにタイトルを追加するにはどうすればよいですか?
これを試して:
sns.lmplot(x, y, data=df, hue="hue")
ax = plt.gca()
ax.set_title("Graph (a)")
# 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)
seaborn
は内部ではmatplotlib
を使用するため、簡単な答えが必要な場合は、次のように使用します。
plt.title('My Title')
直前
plt.show()
sns.lmplot(x, y, data=df, hue="hue", ax=ax).fig.suptitle("Graph (a)")