scipy.cluster.hierarchy.
leaves_list#
- scipy.cluster.hierarchy.leaves_list(Z)[源代码][源代码]#
返回一个叶节点ID列表。
返回值对应于从左到右出现在树中的观测向量索引。Z 是一个链接矩阵。
- 参数:
- Zndarray
编码为矩阵的层次聚类。Z 是一个链接矩阵。更多信息请参见
linkage
。
- 返回:
- leaves_listndarray
叶节点ID列表。
参见
dendrogram
关于树状图结构的信息。
示例
>>> from scipy.cluster.hierarchy import ward, dendrogram, leaves_list >>> from scipy.spatial.distance import pdist >>> from matplotlib import pyplot as plt
>>> X = [[0, 0], [0, 1], [1, 0], ... [0, 4], [0, 3], [1, 4], ... [4, 0], [3, 0], [4, 1], ... [4, 4], [3, 4], [4, 3]]
>>> Z = ward(pdist(X))
链接矩阵
Z
表示一个树状图,即一个编码了执行聚类结构的树。scipy.cluster.hierarchy.leaves_list
显示了X
数据集中索引与树状图中叶子的映射关系:>>> leaves_list(Z) array([ 2, 0, 1, 5, 3, 4, 8, 6, 7, 11, 9, 10], dtype=int32)
>>> fig = plt.figure(figsize=(25, 10)) >>> dn = dendrogram(Z) >>> plt.show()