Map value to specific colour in seaborn heatmap

烈酒焚心 提交于 2019-12-30 03:19:05

问题


I am plotting a heatmap in Python with the seaborn package. The values I am plotting are discrete, they are the integers -1, 0, and 1.

I would like the cells in the heatmap with the value -1 to show up green, those with 0 as yellow, and 1 as red.

Is it possible to specify this ruling in the cubehelix_palette() or colour_palette() functions?


回答1:


You can use matplotlib's ListedColormap as follows:

import numpy as np
import seaborn as sns
from matplotlib.colors import ListedColormap

data = np.random.randint(-1, 2, (10,10)) # Random [-1, 0, 1] data
sns.heatmap(data, cmap=ListedColormap(['green', 'yellow', 'red']), annot=True)

which yields:

You can replace the strings 'green', 'yellow', 'red' with hexcolors such as '#FF0000' (equivalent to 'red') or rgb colors such as (1.,0.,0.) (also equivalent to 'red').



来源:https://stackoverflow.com/questions/33918822/map-value-to-specific-colour-in-seaborn-heatmap

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