SciPy - Clustering and Distance
What is wrong with this code snippet?
from scipy.cluster.hierarchy import dendrogram Z = [[0, 1, 0.5, 2], [1, 2, 0.7, 2]] dn = dendrogram(Z)
