scipy.cluster.hierarchy.
leaves_list#
- scipy.cluster.hierarchy.leaves_list(Z)[source]#
返回叶节点 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()