请问 有没有朋友知道层次聚类中 有什么方法可以获得某个特定距离下被分成了几类data = np.array(data)Z = linkage(data,method='single')dendrogram(Z)plt.show()
比如我想获得距离为2以下被分成了几类