标签: python scipy hierarchical-clustering dendrogram
使用scipy的dendrogram()方法时,color_threshold默认设置为matlab behavior,其中scipy documentation显示为0.7*max(Z[:,2]),其中Z[:,2]是链接中距离的列矩阵。此默认选择背后的原因是什么?是否有论文或我可以参考的东西证明这是具有良好属性的简单计算?将其作为默认选择的依据是什么?
0.7*max(Z[:,2])
Z[:,2]