我觉得这不能太难。我知道hclust()
,cutree()
但是如何获得质心的坐标,其中没有点距离高于给定半径?我知道质心范围内的点可能已经属于不在范围内的质心。我对此很好。
set.seed(1)
data <- matrix(runif(100),ncol=2)
plot(data)
dclust <- hclust(dist(data),method="centroid")
cutree(dclust,h=0.1)
cutree(...,h=0.1)
dclust
由于未订购高度,将已经失败。