as.hclust(stats)
as.hclust()所属R语言包:stats
Convert Objects to Class hclust
转换对象类hclust
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Converts objects from other hierarchical clustering functions to class "hclust".
转换对象从其他层次聚类功能类"hclust"。
用法----------Usage----------
as.hclust(x, ...)
参数----------Arguments----------
参数:x
Hierarchical clustering object
层次聚类对象
参数:...
further arguments passed to or from other methods.
通过进一步的论据或其他方法。
Details
详情----------Details----------
Currently there is only support for converting objects of class "twins" as produced by the functions diana and agnes from the package cluster. The default method throws an error unless passed an "hclust" object.
目前只支持类对象转换"twins"功能diana和agnes包cluster。默认的方法抛出一个错误,除非通过"hclust"对象,。
值----------Value----------
An object of class "hclust".
对象类"hclust"。
参见----------See Also----------
hclust, and from package cluster, diana and agnes
hclust,并从包cluster,diana和agnes
举例----------Examples----------
x <- matrix(rnorm(30), ncol=3)
hc <- hclust(dist(x), method="complete")
if(require("cluster", quietly=TRUE)) {# is a recommended package[是一个建议方案]
ag <- agnes(x, method="complete")
hcag <- as.hclust(ag)
## The dendrograms order slightly differently:[#聚类顺序稍有不同:]
op <- par(mfrow=c(1,2))
plot(hc) ; mtext("hclust", side=1)
plot(hcag); mtext("agnes", side=1)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|