将99行四分位数添加到seaborn boxplot中

时间:2017-08-30 18:09:02

标签: python pandas seaborn

我有一个如下所示的数据框:

          A   B   C  D  
sample1   1   50  20 10 
sample2   30 10  30 0
sample3   4  15 20 5

我使用此数据sns.boxplot(data)制作了箱形图,但我需要在每个样本中将单个阈值设置为99%。

我使用per = df.quatile(.99)提取百分位数,但我不知道如何添加它们。

非常感谢!!

0 个答案:

没有答案