summary.clara(cluster)
summary.clara()所属R语言包:cluster
Summary Method for ‘clara’ Objects
“克拉拉”对象的简易方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns (and prints) a summary list for a clara object. Printing gives more output than the corresponding print.clara method.
返回(并打印)为clara对象的汇总列表。印刷提供了更多的输出比相应的的print.clara方法。
用法----------Usage----------
## S3 method for class 'clara'
summary(object, ...)
## S3 method for class 'summary.clara'
print(x, ...)
参数----------Arguments----------
参数:x, object
a clara object.
clara对象。
参数:...
potential further arguments (require by generic).
潜在的进一步参数(由通用要求)。
参见----------See Also----------
clara.object
clara.object
举例----------Examples----------
## generate 2000 objects, divided into 5 clusters.[#生成2000对象,分为5簇。]
set.seed(47)
x <- rbind(cbind(rnorm(400, 0,4), rnorm(400, 0,4)),
cbind(rnorm(400,10,8), rnorm(400,40,6)),
cbind(rnorm(400,30,4), rnorm(400, 0,4)),
cbind(rnorm(400,40,4), rnorm(400,20,2)),
cbind(rnorm(400,50,4), rnorm(400,50,4))
)
clx5 <- clara(x, 5)
## Mis`classification' table:[#不当分类表:]
table(rep(1:5, rep(400,5)), clx5$clust) # -> 1 "error"[ - > 1“错误”]
summary(clx5)
## Graphically:[#图解:]
par(mfrow = c(3,1), mgp = c(1.5, 0.6, 0), mar = par("mar") - c(0,0,2,0))
plot(x, col = rep(2:6, rep(400,5)))
plot(clx5)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|