我正在尝试在 matplotlib 中绘制热图并将其用作基础:将 x 轴移动到 matplotlib 中的绘图顶部
问题是我只有三列但有 70 行,但是当我使用示例时,该图始终有 70 行和 70 列。有人知道如何限制列的数量,它们适合我的数据吗?
我正在尝试在 matplotlib 中绘制热图并将其用作基础:将 x 轴移动到 matplotlib 中的绘图顶部
问题是我只有三列但有 70 行,但是当我使用示例时,该图始终有 70 行和 70 列。有人知道如何限制列的数量,它们适合我的数据吗?
你在我的代码中发现了一个错误。我将索引 (for data.shape
) 颠倒了。
import matplotlib.pyplot as plt
import numpy as np
column_labels = list('ABC')
row_labels = range(7)
data = np.random.rand(7,3)
fig, ax = plt.subplots()
heatmap = ax.pcolor(data, cmap=plt.cm.Blues)
# put the major ticks at the middle of each cell
ax.set_xticks(np.arange(data.shape[1])+0.5, minor=False)
ax.set_yticks(np.arange(data.shape[0])+0.5, minor=False)
# want a more natural, table-like display
ax.invert_yaxis()
ax.xaxis.tick_top()
ax.set_xticklabels(column_labels, minor=False)
ax.set_yticklabels(row_labels, minor=False)
plt.show()
产量