如何爲此Seaborne情節添加標題?讓我們給它一個標題'我是一個標題'。如何爲Seaborn Facet劇情添加標題
tips = sns.load_dataset("tips")
g = sns.FacetGrid(tips, col="sex", row="smoker", margin_titles=True)
g.map(sns.plt.scatter, "total_bill", "tip")
如何爲此Seaborne情節添加標題?讓我們給它一個標題'我是一個標題'。如何爲Seaborn Facet劇情添加標題
tips = sns.load_dataset("tips")
g = sns.FacetGrid(tips, col="sex", row="smoker", margin_titles=True)
g.map(sns.plt.scatter, "total_bill", "tip")
這些行後:
plt.subplots_adjust(top=0.9)
g.fig.suptitle('THIS IS A TITLE, YOU BET') # can also get the figure from plt.gcf()
如果添加suptitle無需調整軸,seaborn小職稱它交疊。
(使用不同的數據):
什麼工作對我來說是:
sns.plt.suptitle('YOUR TITLE HERE')
g.fig.subplots_adjust(top=0.9)
g.fig.suptitle('Title', fontsize=16)
這爲我工作,但我不得不使用'plt.subplots_adjust(頂部= 0.8 )'而不是'top = 0.9'。 – Mack