This is documentation for an old release of SciPy (version 0.12.0). Read this page Search for this page in the documentation of the latest stable release (version 1.15.1).
scipy.cluster.hierarchy.complete
-
scipy.cluster.hierarchy.complete(y)[source]
Performs complete/max/farthest point linkage on a condensed distance matrix
Parameters : | y : ndarray
The upper triangular of the distance matrix. The result of
pdist is returned in this form.
|
Returns : | Z : ndarray
A linkage matrix containing the hierarchical clustering. See
the linkage function documentation for more information
on its structure.
|