I am trying to plot some values using a seaborn heatmap, and my values range from 0 to 1, but I am mainly interested in the variation from 0 to 0.05. I was looking for a way to have the range 0-0.05 in the color bar be as big as the range 0.05 - 1, with either both ranges being different color gradients or the bottom region being a gradient, and top being one color.
So far I managed to use DivergingNorm(vmin=0, vcenter=0.05,vmax=1) to get the following plot
I would like to center the 0.05 in the middle of the bar and shrink the range of 0.05-1 into the top half. It's my first time posting, so I am not very sure what other material might make it easier for you to help me :)