I have a dataframe that looks like this:
A B C D
sample1 1 50 20 10
sample2 30 10 30 0
sample3 4 15 20 5
I made boxplots with this data sns.boxplot(data)
, but I need to set individual thresholds at 99 percentile in each sample.
I extracted the percentiles with: per = df.quatile(.99)
, but I don't know how to add them.
Thank you very much!!