bbox_inches='tight'
应该这样做:
from matplotlib import pyplot as plt
plt.savefig('figure.png', bbox_inches='tight')
bbox_inches
:
Bbox英寸。只有图的给定部分是
保存。如果'紧,',试着找出紧张的bbox
这个数字。
实施例
plt.plot(range(10))
plt.legend(['abc'], loc='upper right', bbox_to_anchor=(1.2, 0.9))
导致这个png: