我正在尝试在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上添加标题?
答案 0 :(得分:7)
试试这个:
sns.lmplot(x, y, data=df, hue="hue")
ax = plt.gca()
ax.set_title("Graph (a)")
答案 1 :(得分:2)
# 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 :(得分:1)
sns.lmplot(x, y, data=df, hue="hue", ax=ax).fig.suptitle("Graph (a)")
答案 3 :(得分:1)
seaborn
在幕后使用matplotlib
,因此,如果您想要一个简单的答案,请使用:
plt.title('My Title')
就在
之前plt.show()