带有注释的Matplotlib与保存的图形截断

时间:2015-04-27 16:39:50

标签: python matplotlib

我正在使用matplotlib在使用注释时绘制一些数字。我遇到的问题是注释(在绘图区域之外)与保存的图片截断,如下图所示。

figure with annotations cut off

下图是我想要的那个:

The desired picture

有谁知道如何解决这个问题?我注意到人们建议在rcParams中使用plt.tight_plot()或fig.autolayout,但这似乎不起作用。下面是生成图的代码。

fig, ax = plt.subplots()
ax.set_xlim([-0.02,1.1])
ax.set_ylim([-0.02,1.1])

ax.plot([0,0,0,0.5,0.5,0.5,1,1,1], [0,0.5,1,0,0.5,1,0,0.5,1], 'go')

ax.annotate("Digit 2",
            xy=(0.5, -0.1), xycoords='data',
            xytext=(0.5, -0.3), textcoords='data',
            arrowprops=dict(arrowstyle="->",
                            connectionstyle="arc3"),
             annotation_clip=False,
             fontsize = 12,
             ha='center',
            )

ax.annotate("Level 2",
            xy=(-0.1, 1), xycoords='data',
            xytext=(-0.35, 1), textcoords='data',
            arrowprops=dict(arrowstyle="->",
                            connectionstyle="arc3"),
                    annotation_clip=False,
                    fontsize = 12,
                    va='center',
            )

plt.savefig('sample.png', dpi = 300)

1 个答案:

答案 0 :(得分:41)

使用bbox_inches参数

保存数字
plt.savefig('sample.png', bbox_inches="tight")