我看到第一个条形轴与matplotlib pyplot条形图中的轴之间存在较大间隙。如何消除这种差距?
使用此代码生成:
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()