fortify.kmeans(useful)
fortify.kmeans()所属R语言包:useful
fortify.kmeans
fortify.kmeans
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Fortify a kmeans model with its data
Fortify的一个k均值模型,其数据
用法----------Usage----------
## S3 method for class 'kmeans'
fortify(model, data = NULL, ...)
参数----------Arguments----------
参数:model
kmeans model
kmeans模型
参数:data
Data used to fit the model
使用的数据拟合模型
参数:...
Not Used
未使用
Details
详细信息----------Details----------
Prepares a kmeans object to be plotted using cmdscale to compute the projected x/y coordinates. If data is not provided, then just the center points are calculated.
准备的kmeans对象要绘制使用cmdscale计算预计的x / y坐标。 data如果不提供,那么就中心点的计算方法。
值----------Value----------
The original data with extra columns:
额外的列的原始数据:
参数:.x
The projected x position. <tr valign="top"><td>.y</td>
预计的x位置。 <tr valign="top"> <TD> .y</ TD>
The projected y position. <tr valign="top"><td>.Cluster</td>
预计的Y位置。 <tr valign="top"> <TD> .Cluster</ TD>
The cluster that point belongs to.
点属于聚类。
(作者)----------Author(s)----------
Jared P. Lander
参见----------See Also----------
kmeans fortify ggplot plot.kmeans
的k均值强化ggplot plot.kmeans
实例----------Examples----------
k1 <- kmeans(x=iris[, 1:4], centers=3)
hold <- fortify(k1, data=iris)
head(hold)
hold2 <- fortify(k1)
head(hold2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|