I'd like to superimpose one plot over another (they are polygons, really in some lat/lon space, using geopandas, but the plot is simply derived from matplotlib)
I have:
figZ, axZ = plt.subplots(1, figsize=(11,8.5))
Sfig = X.plot(ax=axZ, color='white', edgecolor='black', lw=0.7)
Y.plot(ax=axZ, color='white', edgecolor='black', lw=0.7, alpha=0.3)
How do I set Sfig
's color
to "no-fill" instead of white? The way it is now it "blurs" my Sfig
image (X.plot
) by the alpha of the Y.plot
one. How do I set "color" to actually transparent?