Hi all - would love to see a tutorial on how to edit subplots of a pyleoclim figure. Specifically, I want to override a PCA plot so I can plot my own loadings.
Right now, the way I'm handling this is by calling
fig, gs = pca.modeplot()
ax = subplot(gs[3,1])
and then plotting everything to ax. gs is a GridSpec and fig is a Figure.