How to add title to seaborn boxplot

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') and sns.boxplot('Day', 'Count', data= gg).suptitle('lalala'). None worked. I think it might be because I’m also working with matplotlib.

Leave a Comment