matplotlib:二元热图

时间:2015-02-14 16:01:51

标签: python matplotlib heatmap

假设我有一个10x10矩阵,它包含或仅为0和1,表示为列表列表。我怎么能用matplotlib来表示这样的矩阵作为红色和黑色方块的网格? (红色表示1,黑色表示0)。

我进行了广泛的搜索,但我能找到的最接近的是Plot a black-and-white binary map in matplotlib,但是颜色的浮点数小于1.一旦我得到1的数据,情节就会出错。有人可以帮忙吗?或者指向可以帮助我克服这个问题的特定matplotlib文档?

1 个答案:

答案 0 :(得分:7)

您需要所谓的ListedColorMap

import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl

# random data
x = np.random.random_integers(0, 1, (10, 10))

fig, ax = plt.subplots()

# define the colors
cmap = mpl.colors.ListedColormap(['r', 'k'])

# create a normalize object the describes the limits of
# each color
bounds = [0., 0.5, 1.]
norm = mpl.colors.BoundaryNorm(bounds, cmap.N)

# plot it
ax.imshow(x, interpolation='none', cmap=cmap, norm=norm)

enter image description here