This is documentation for an old release of SciPy (version 0.19.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.cluster.hierarchy.leaves_list¶
-
scipy.cluster.hierarchy.
leaves_list
(Z)[source]¶ Returns a list of leaf node ids
The return corresponds to the observation vector index as it appears in the tree from left to right. Z is a linkage matrix.
Parameters: Z : ndarray
The hierarchical clustering encoded as a matrix. Z is a linkage matrix. See
linkage
for more information.Returns: leaves_list : ndarray
The list of leaf node ids.