Set Max value for color bar on seaborn heatmap

[亡魂溺海] 提交于 2019-12-10 00:47:48

问题


I need to set the max value on the seaborn heatmap cbar to 2. I've tried:

cbar_kws = { 'ticks' : [0, 2] }
sns.heatmap(tiles, robust=True, fmt="f", cmap= 'RdBu_r', cbar_kws = cbar_kws)

But this doesn't work and the documentation isn't very clear. How would I do this properly?


回答1:


I think you want to use the vmin and vmax parameters for the heatmap, as described in the docs:

vmin, vmax : floats, optional

Values to anchor the colormap, otherwise they are inferred from the data and other keyword arguments.

sns.heatmap(tiles, robust=True, fmt="f", cmap='RdBu_r', vmin=0, vmax=2)


来源:https://stackoverflow.com/questions/33779748/set-max-value-for-color-bar-on-seaborn-heatmap

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!