레이블이 각 개별 색상의 중앙에 있도록에 colorbar
대한 범례 를 만들고 싶습니다 heatmap
. 여기에서 빌린 예 :
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.colors import ListedColormap
#discrete color scheme
cMap = ListedColormap(['white', 'green', 'blue','red'])
#data
np.random.seed(42)
data = np.random.rand(4, 4)
fig, ax = plt.subplots()
heatmap = ax.pcolor(data, cmap=cMap)
#legend
cbar = plt.colorbar(heatmap)
cbar.ax.set_yticklabels(['0','1','2','>3'])
cbar.set_label('# of contacts', rotation=270)
# 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)
ax.invert_yaxis()
#labels
column_labels = list('ABCD')
row_labels = list('WXYZ')
ax.set_xticklabels(column_labels, minor=False)
ax.set_yticklabels(row_labels, minor=False)
plt.show()
그러면 다음 플롯이 생성됩니다.
이상적으로는 네 가지 색상과 각 색상에 대해 중앙에 레이블이있는 범례 막대를 생성하고 싶습니다 0,1,2,>3
. 이것이 어떻게 달성 될 수 있습니까?
axes_grid1
대신 이어야한다고 생각합니다axes.grid1
.