kmeans2.plot(Mfuzz)
kmeans2.plot()所属R语言包:Mfuzz
Plotting results for k-means clustering
k-means聚类结果绘制
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function visualises the clusters
此功能形象化聚类
用法----------Usage----------
kmeans2.plot(eset,kl,mfrow=c(1,1))
参数----------Arguments----------
参数:eset
object of the class“ExpressionSet”.
的对象类“ExpressionSet”。
参数:kl
list produced by kmeans2.
kmeans2产生的列表。
参数:mfrow
determines splitting of graphic window.
确定图形窗口的分裂。
值----------Value----------
The function displays the temporal profiles of clusters detected by k-means.
该功能显示检测的k-means聚类的时空分布。
作者(S)----------Author(s)----------
Matthias E. Futschik (<a href="http://itb.biologie.hu-berlin.de/~futschik">http://itb.biologie.hu-berlin.de/~futschik</a>)
举例----------Examples----------
if (interactive()){
data(yeast)
# Data pre-processing[数据预处理]
yeastF <- filter.NA(yeast)
yeastF <- fill.NA(yeastF)
yeastF <- standardise(yeastF)
# K-means clustering and visualisation[K-means聚类和可视化]
kl <- kmeans2(yeastF,k=20)
kmeans2.plot(yeastF,kl=kl,mfrow=c(2,2))
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|