I've been wondering this forever: How can I set graphs in Matplotlib to share axes when I use the plt.subplot(221) (for example) command? Rather than saying:
fig, axes = plt.suplots(2,2,sharex=True, sharey=True)
I would like to say:
plt.subplot(221, sharex=True, sharey=True)
So that I don't have to deal with this annoying array that plt.subplots returns, but obviously this doesn't work.