SciPy - Clustering and Distance
What is wrong with this code?
from scipy.cluster.hierarchy import linkage import numpy as np X = np.array([[1, 2], [3, 4], [5, 6]]) Z = linkage(X, method='average', metric='euclidean')
