scipy.cluster.hierarchy.
ClusterNode#
- class scipy.cluster.hierarchy.ClusterNode(id, left=None, right=None, dist=0, count=1)[source]#
一个用于表示聚类的树节点类。
叶节点对应于原始观测值,而非叶节点对应于非单例聚类。
由连锁函数返回的矩阵,
to_tree
函数可将其转换为易于使用的树表示形式。所有参数名称也是属性。
- 参数:
- idint
节点 ID。
- leftClusterNode 实例,可选
左子树节点。
- rightClusterNode 实例,可选
右子树节点。
- distfloat,可选
连锁矩阵中对应于此聚类的距离。
- countint,可选
此聚类中的示例数。
另请参阅
to_tree
将连锁矩阵
Z
转换为树对象。
方法