Matplotlib设置xlim和ylim时会引入空格

时间:2019-05-29 09:33:50

标签: pandas matplotlib scatter-plot

我正在使用以下代码制作一个简单的带标签的散点图:

x = point_df.x_coord
y = point_df.y_coord

plt.scatter(x, y, alpha=1.0, s=15)
labels = np.around(point_df.values, 1)

for i, txt in enumerate(labels):
    plt.annotate(txt, (x[i], y[i]), fontsize=18, color='green')

plt.title('METHOD 3')

plt.ylim(-2, 2)
plt.xlim(-1, 1)
plt.show()

缩放有效,但不会减小绘图的大小,而是在缩放周围增加了很多空白。

我该如何解决?

0 个答案:

没有答案