删除pyplot中条和轴之间的空间

时间:2018-06-11 21:03:35

标签: python-3.x matplotlib

我看到第一个条形轴与matplotlib pyplot条形图中的轴之间存在较大间隙。如何消除这种差距?

enter image description here

使用此代码生成:

bar_color = (31 / 255, 119 / 255, 180 / 255)
plt.figure(figsize=(16, 45))
plt.barh(x, y, height=1.2, color=bar_color)
plt.title("Frequency of Years of Classic Books", fontsize=25)
plt.yticks(x, tuple(labels), fontsize=16)
plt.xticks(fontsize=18)
plt.savefig("data/figures/histogram-years.png", ppi=30, format="png", bbox_inches="tight")
plt.show()

0 个答案:

没有答案