matplotlib的箱子图 - 为文本腾出空间

时间:2013-11-02 20:04:51

标签: python matplotlib

在下图中,我遵循此主题中描述的方法:Overlaying the numeric value of median/variance in boxplots

如何控制箱线图中框的边界框或大小,以使文字不会溢出图形或与相邻的框碰撞?

enter image description here

1 个答案:

答案 0 :(得分:1)

您可以通过使用figsize参数调用figure来增加数字范围:

figure(figsize=(xsize,ysize))

您也可以通过使用size参数来减小字体大小(通常不理想):

text(x, y, '%.1f' % x,
     horizontalalignment='center', size=size)