Commit 87c56690afdae6225b8ec4697e8799c07ee30cc0

Authored by Mathias Quillot
1 parent 6da8f6ca75
Exists in master

repair error from plot

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

bin/plot-count-matrix.py
... ... @@ -88,7 +88,7 @@
88 88 ax.set_yticks(np.arange(len(all_clusters)))
89 89  
90 90 ax.set_xticklabels(all_classes)
91   -ax.set_yticklabels(all_clusters)
  91 +ax.set_yticklabels(list(np.arange(len(all_clusters))))
92 92  
93 93 fig.colorbar(im, ax=ax)
94 94