如何为Seaborn Facet Plot添加标题

我如何为这个海底的情节添加一个标题? 让我们给它一个标题“我是一个标题”。

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小平面标题将与其重叠。

(使用不同的数据):

在这里输入图像说明

在ipython笔记本中,这对我有用!

 sns.plt.title('YOUR TITLE HERE') 

对我有效的是:

sns.plt.suptitle('YOUR TITLE HERE')

 g.fig.subplots_adjust(top=0.9) g.fig.suptitle('Title', fontsize=16) 

更多信息在这里: http : //matplotlib.org/api/figure_api.html