I am trying to create a figure with 6 subplots all with the same colorbar. I am able to plot everything together, but python automatically adds a color bar to each plot. Therefore, when I attempt to create and add another colorbar that spans the length of the figure, it still has all 6 original colorbars as well as the newly created one. How can I create a colorbar that will span the length of all 6 plots/entire figure, and still delete/remove the single colorbars for each subplot?
Here's my code and an example output (the two middle plots are supposed to be empty at the moment):
fig, axs = plot.subplots(ncols=2, nrows=3, axwidth=5, proj='pcarree')
ax1, ax2, ax3, ax4, ax5, ax6 = axs
axs.format(suptitle=('MAM S06 Change in (m/s)'),
coast = True,latlim = (20,50), lonlim = (235,293), innerborders = True)
S06_mam_seas_1.plot.contourf(ax=ax1, levels = levels)
S06_mam_seas_2.plot.contourf(ax=ax2, levels = levels)
S06_mam_seas_3.plot.contourf(ax=ax3, levels = levels)
S06_mam_seas_4.plot.contourf(ax=ax4, levels = levels)
S06_mam_seas_5.plot.contourf(ax=ax5, levels = levels)
S06_mam_seas_6.plot.contourf(ax=ax6, levels = levels)
ax1.set_title(str(Diff1) + ' - ' + str(BASE))
ax2.set_title(str(Diff2) + ' - ' + str(BASE))
ax3.set_title(str(Diff3) + ' - ' + str(BASE))
ax4.set_title(str(Diff4) + ' - ' + str(BASE))
ax5.set_title(str(Diff5) + ' - ' + str(BASE))
ax6.set_title(str(Diff6) + ' - ' + str(BASE))
Output of my images
Here is what happens when I attempt to create and add my own axis:

Thanks!!

