1

http://stat.ethz.ch/R-manual/R-devel/library/cluster/html/clusplot.default.html上的 R 文档并没有完全帮助我。代码:

somedata = read.data("somefile.tsv")
clustered = kmeans(somedata, 5)
library(cluster)
clusplot(somedata, clustered$cluster, cex=0.1, ..??whatshouldgohere??..)
4

2 回答 2

6

使用col.p参数:

clusplot(somedata, clustered$cluster, cex=1, col.p=clustered$cluster)
于 2012-06-11T17:23:22.173 回答
0

您可以使用上面大卫已经说过的 col.p 参数:

clusplot(somedata, clustered$cluster, cex=1.0, col.p=c ("steelblue", "darkred", "darkgreen"))

这将从列表中指定的颜色为您的观察点分配不同的颜色。

检查这个:

data(iris)
iris.x <- iris[, 1:4]
cl3 <- pam(iris.x, 3)$clustering
op <- par(mfrow= c(2,2))
clusplot(iris.x, cl3, color = TRUE, cex=0.7, col.p=c ("steelblue", "darkred", "darkgreen"))
于 2013-08-22T07:00:23.683 回答