是否可以绘制一个"棋盘"在python中输入剧情?

时间:2015-01-09 05:14:47

标签: python plot

我的数据集有两个独立变量和一个因变量。我认为表示数据集的最佳方法是通过棋盘类型绘图,其中单元格的颜色代表一系列值,如下所示:

我似乎无法找到自动执行此操作的代码。

2 个答案:

答案 0 :(得分:3)

您需要使用绘图包来执行此操作。例如,使用matplotlib:

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

X = 100*np.random.rand(6,6)

fig, ax = plt.subplots()
i = ax.imshow(X, cmap=cm.jet, interpolation='nearest')
fig.colorbar(i)

plt.show()

enter image description here

答案 1 :(得分:0)

对于多年后遇到的我来说,Original Poster 想要的是热图。

Matplotlib 有关于以下示例 here 的文档。 2D map with values, title and axes annotations