How to add a title to Seaborn Facet Plot

前端 未结 7 884
不知归路
不知归路 2020-12-07 13:18

How do I add a title to this Seaborne plot? Let\'s give it a title \'I AM A TITLE\'.

tips = sns.load_dataset(\"tips\")
g = sns.FacetGrid(tips, col=\"sex\", r         


        
相关标签:
7条回答
  • 2020-12-07 14:20

    In ipython notebook, this worked for me!

    sns.plt.title('YOUR TITLE HERE')
    
    0 讨论(0)
提交回复
热议问题