Je voudrais créer une colorbar
légende pour a heatmap
, de telle sorte que les étiquettes soient au centre de chaque couleur discrète. Exemple emprunté à ici :
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()
Cela génère le tracé suivant:
Idéalement , je voudrais créer une barre de légende qui a quatre couleurs et pour chaque couleur, une étiquette dans son centre: 0,1,2,>3
. Comment cela peut il etre accompli?
axes_grid1
au lieu deaxes.grid1
.