我正在尝试在键值类型的向量上使用 k-means 聚类。我的问题是,如何设置向量中每个元素的坐标?具体来说,键值对是字符串浮点数。我需要这个来稍后找到集群的中心。
问问题
2270 次
2 回答
0
K-means 算法通常会计算集群的质心。例如,在 R 的实现中:
n.clin <- 10
n.pop <- 100
clinicdat <- data.frame( x=runif(n.clin), y=runif(n.clin) )
popdat <- data.frame( x=runif(n.pop), y=runif(n.pop), pop=sample(1:5000, n.pop) )
plot(popdat$y~popdat$x, col="grey")
points(clinicdat$y~clinicdat$x, col="red")
km <- kmeans( subset(popdat,select=c(x,y)), n.clin )
points( fitted(km, method="centers"), col="green" )
于 2012-12-23T18:33:30.043 回答