SciPy - Clustering and Distance
Given the code below, what will
dist_matrix.shape output?import numpy as np from scipy.spatial import distance_matrix X = np.array([[1, 2], [3, 4], [5, 6]]) dist_matrix = distance_matrix(X, X)
