Home > Back-end >  Boxplot outlier annotation over facet grid in Python Seaborn
Boxplot outlier annotation over facet grid in Python Seaborn

Time:03-04

I am drawing boxplots with Python Seaborn package. I have facet grid with both rows and columns. That much I've been able to do with the Seaborn function catplot.

I also want to annotate the outliers. I have found some nice examples at SO for annotating the outliers but without facet structure. That's where I'm struggling.

Here is what I've got (borrows heavily from this post: sns.catplot annotating boxplot outliers

  • Related