Python-xlabels的空间

时间:2019-03-16 10:05:32

标签: python matplotlib

如何为xlabel设置空间? 我读过https://matplotlib.org/api/_as_gen/matplotlib.pyplot.xlabel.html,但我并不很了解。我使用matplotlib.pyplot。谢谢

plt.xlabel(r'Měsíc', fontsize=12)

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以使用plt.tight_layout()来解决此类问题。此外,如果它的自动算法可以在画布上很好地分配所有内容,则它可以作为rect的kwarg,它需要[xmin, ymin, xmax, ymax]值列表,这些值定义了要用于(sub)plot的图形的空间( s),例如

plt.tight_layout(rect=[0, .1, 1, .95)

如果脚本需要后者,则应在图创建结束时在plt.show()之前调用它。