对于matplotlib中的图例框,可以使用以下内容设置画布上的锚点和图例框本身的锚点:
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(range(10), '-o', label = 'example')
leg = plt.legend(loc = 'upper left', bbox_to_anchor = (0, 0))
# ^^^^^^^^^^^ ^^^^^^
# | \==> anchor on the canvas
# \==> anchor point of the legend box
虽然我可以在画布上为文本框设置锚点,但我无法设置框的锚点。有没有一种简单的方法可以做到这一点?