After adding
bbox_inches="tight"
to an invocation of plt.savefig
that has worked for several years, I get
/usr/local/lib/python2.7/site-packages/matplotlib/figure.py:1744: UserWarning:
This figure includes Axes that are not compatible with tight_layout, so its results might be incorrect
The figure in question appears to work (without truncation of annotations now), but I wonder what this error could mean and whether there's anything obvious or known (without digging deep into complex figure code) that I can do to address it.
Is there some known or common cause for this that I should look for in my code?