是否可以在matplotlib的x轴标签中显示自定义图像

时间:2017-10-24 10:05:21

标签: python matplotlib

我画了一个树形图,想要在我的x轴标签上显示小图像而不是名字,我不确定天气是否可能。 我的树形图是 dendrogram

和我的树形图的代码是

plt.figure(figsize=(25, 10))
plt.title('Hierarchical Clustering Dendrogram')
plt.xlabel('sample index')
plt.ylabel('distance')
dendrogram(
    Z,
    leaf_rotation=90.,  # rotates the x axis labels
    leaf_font_size=8.,  # font size for the x axis labels
     labels= templateNames

)
plt.show()

现在我正在显示图像名称,但我也有保存另一个数组的图像列表。我试过了plt.imgshow(img)但是它没有用。

0 个答案:

没有答案