熊猫多个箱形图-如何减少地块之间的间距?

时间:2019-05-15 15:29:16

标签: python python-3.x pandas boxplot spacing

我有一个具有两个箱形图的情节:

enter image description here

lan_data和wan_data之间有很大的间隔。我想缩小间距。

我的数据框很简单:

df = pd.DataFrame({'lan_data':random.sample(range(1, 100), 100), 'wan_data':random.sample(range(1, 100), 100)})

我已经看过,我遇到的所有答案都与减小轴宽度(只是挤压绘图)或更改绘图的位置有关-这些解决方案似乎都不适合。

理想情况下,我希望能够执行以下操作:

df.plot.box(box_padding = [top, bottom, left, right])

df.plot.box(subplot_spacing = 1.5)

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

尝试玩widths

df.plot.box(widths=0.8)

enter image description here