熊猫系列箱图未正确显示

时间:2017-07-05 13:25:51

标签: python pandas plot boxplot

我有一个名为a的Pandas系列,而a.describe()给出了这个

count    1116.000
mean      211.495
std      1241.612
min         1.000
25%        16.000
50%        20.000
75%        57.000
max     23220.000

我想创建一个箱形图,所以我做了a.plot(kind='box'),我得到的是: enter image description here 该系列的前几个条目如下所示:

338.000
17.000
9.000
20.000
68.000
288.000
18.000
25.000

为什么箱图不能正确显示?

最大值确实使得该图不可读。我决定通过这样做隐藏异常值:

plt.boxplot(a, showfliers=False)

enter image description here

1 个答案:

答案 0 :(得分:2)

实际上,关于您的价值观,您的盒子图正确地显示在'因为你的最大值:23220.000。尝试使用Pandas plot function

的xlim和ylim参数