scipy.cluster.hierarchy.ward¶
-
scipy.cluster.hierarchy.ward(y)[source]¶ Perform Ward’s linkage on a condensed distance matrix.
See
linkagefor more information on the return structure and algorithm.The following are common calling conventions:
Z = ward(y)Performs Ward’s linkage on the condensed distance matrixy.Z = ward(X)Performs Ward’s linkage on the observation matrixXusing Euclidean distance as the distance metric.
Parameters: - y : ndarray
A condensed distance matrix. A condensed distance matrix is a flat array containing the upper triangular of the distance matrix. This is the form that
pdistreturns. Alternatively, a collection of m observation vectors in n dimensions may be passed as a m by n array.
Returns: - Z : ndarray
The hierarchical clustering encoded as a linkage matrix. See
linkagefor more information on the return structure and algorithm.
See also
linkage- for advanced creation of hierarchical clusterings.
scipy.spatial.distance.pdist- pairwise distance metrics
