Seaborn Facet Plot에 제목을 추가하는 방법
Seaborn Facet Plot에 제목을 추가하는 방법 이 Seaborne 플롯에 제목을 어떻게 추가합니까? 제목은 'I AM A TITLE'입니다. 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 facet 제목이 겹..