How to add title to seaborn boxplot

前端 未结 5 1972
花落未央
花落未央 2020-12-12 16:16

Seems pretty Googleable but haven\'t been able to find something online that works.

I\'ve tried both sns.boxplot(\'Day\', \'Count\', data= gg).title(\'lalala\'

5条回答
  •  自闭症患者
    2020-12-12 16:34

    .set_title('') can be used to add title to Seaborn Plot

    import seaborn as sb
    sb.boxplot().set_title('Title')
    

提交回复
热议问题