标签: 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%。
sns.boxplot(data)
我使用per = df.quatile(.99)提取百分位数,但我不知道如何添加它们。
per = df.quatile(.99)
非常感谢!!