Is it possible to get one colorbar to have two ranges?
Basically I have two plots (created separatly and pasted into a blank image).
They use the same colormap (hot), but the color is over a different range due to the nature of the data in each plot. Basically on the left side of the colorbar I would like the range to be 0-1 and the right to be 0.75 -1.
The colorbar could be created with one plot, or a completely figure. I would like to plot a colorbar.
I currently know how to move the ticks from right to left or the colorbar orientation. However, I can't seem to put the ticks on both sides.
This is the code that I use to plot the ticks on the left of the colorbar rather than the default right, but I can't seem to put them on both sides.
cb = plt.colorbar(sm)
cb.ax.yaxis.set_ticks_position('left')
Basically, you can use
twinx
to create another Y-axis, but when I try it to the colobar axe, the aspect setting cause some problem, so I useset_position()
to change the width of the two axes, here is the code:output: