Dendrogram Generated By Scipy-cluster Customisation
This is a follow up to Dendrogram generated by scipy-cluster does not show. from matplotlib.pyplot import show from scipy.spatial.distance import pdist from scipy.cluster.hierarch
Solution 1:
According the dendrogram documentation, you should be able to define labels when you are calling it (either via labels or leaf_label_func args). So there is no need to try to tamper afterwards with labels.
Post a Comment for "Dendrogram Generated By Scipy-cluster Customisation"