Python Seaborn:如何在箱线图可视化中添加均值?

时间:2018-09-24 21:04:07

标签: python-3.x seaborn boxplot

我能够使用Seaborn在箱图中可视化我的数据。

sns.boxplot( x=df['Score'].astype('float'), y=df['Group'] )

该可视化向我显示:所有四个四分位数,上下晶须以及一些离群值。如何将中线添加到箱线图中?请参阅当前的可视化效果(无误)。

enter image description here

谢谢!

1 个答案:

答案 0 :(得分:0)

我只是想通了。代码如下:

sns.boxplot(x=df['Score'].astype('float'), y=df['Group'],showmeans=True )