admin管理员组

文章数量:1287535

df_s=pd.Series([    
      5990.00,  
3990.00,  
399000.00  ,
1995000.00])
plt.yscale("log")

sns.boxplot(y=df_s)

Output

By simple calculation the median is 202,495.00(average of the 2nd and 3rd value). But according to seaborn the median is between 10^4 and 10^5. It is a matter of simple calculation, how is it possible anyone?

本文标签: pythonSeaborn not giving correct median in boxplotStack Overflow