I want to plot in log scale, which I have done using:
plt.contourf(cube[0,:,:].data, levels=np.arange(0,6000,10), norm=mplc.LogNorm())
But then I want the colorbar to still be a linear scale...is this possible, and if so how do I do this? The norm keyword doesn't seem to be valid within the plt.colorbar()
command.