plot.kmeans(useful)
plot.kmeans()所属R语言包:useful
plot.kmeans
plot.kmeans
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot the results from a k-means object
从k-means的对象,绘制结果
用法----------Usage----------
## S3 method for class 'kmeans'
plot(x, data = NULL, class = NULL,
legend.position = c("right", "bottom", "left", "top", "none"),
title = "K-Means Results",
xlab = "Principal Component 1",
ylab = "Principal Component 2", ...)
参数----------Arguments----------
参数:x
A kmeans object.
Akmeans对象。
参数:data
The data used to kit the kmeans object.
所使用的数据试剂盒kmeans对象。
参数:class
Character name of the "true" classes of the data.
字符名称的“真实”类的数据。
参数:legend.position
Character indicating where the legend should be placed.
字符,指示应放在那里的传说。
参数:title
Title for the plot.
图的标题。
参数:xlab
Label for the x-axis.
出版商为x轴。
参数:ylab
Label for the y-axis.
出版商为y轴。
参数:...
Not Used.
未使用。
Details
详细信息----------Details----------
Plots the results of k-means with color-coding for the cluster membership. If data is not provided, then just the center points are calculated.
绘图用颜色编码的聚类成员的k-means的结果。 data如果不提供,那么就中心点的计算方法。
值----------Value----------
A ggplot object
一个ggplot对象
(作者)----------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)
plot(k1)
plot(k1, data=iris)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|