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.

Add Legend to Seaborn point plot

I would suggest not to use seaborn pointplot for plotting. This makes things unnecessarily complicated.Instead use matplotlib plot_date. This allows to set labels to the plots and have them automatically put into a legend with ax.legend(). In case one is still interested in obtaining the legend for pointplots, here a way to go: