SciPy - Clustering and Distance
What is the issue with this code snippet?
from scipy.cluster.hierarchy import linkage X = [[1, 2], [3, 4], [5, 6]] Z = linkage(method='complete', X)
