Antony Lee
Antony Lee
> > Unrelatedly, I noticed that a large number of baseline image changes e.g. in test_axes could have been avoided if they used remove_text=True (it's ticklabels on tests that have...
I checked the rebase, it looks good to me (thanks for doing it). One last thing missing from this is a proper antialiasing toggle (_render_glyph should take a `bool antialiased`...
Controlling based on Artist.get_snap() sounds like a good idea (as you mention, manually inserting gc.set_snap(False) works); I pushed that (and checked that it works). (However, from a quick look, maybe...
> So I've experimented a little bit to try and see where the changes arise; I've added a note below of one that I think I see. > > Using...
I tested the positioning of the fraction bar a bit more: ```python import sys import matplotlib.pyplot as plt fig = plt.figure(figsize=(10, 2)) fig.suptitle(sys.argv[1]) for i in range(100): fig.text(0.01 * i,...
Sounds like a reasonable feature request (I think I agree that the proposed semantics are preferable), but of course there's going to be backcompat issues. I think I have a...
Go for it.
Would still be nice to fix, just needs some deprecation management...
I don't really mind either way. However, if you're going to refactor this, I wonder if it would be better to instead have a `arrange_grid()` that takes the output of...
I actually agree with the comment in #27963 that we should just get rid of axes_grid and promote layout="compressed" as much as possible. (I guess the "different-sized images" case could...