MDSplot(RRF)
MDSplot()所属R语言包:RRF
Multi-dimensional Scaling Plot of Proximity matrix from RRF
多维尺度图的相似性矩阵RRF
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot the scaling coordinates of the proximity matrix from RRF.
绘制缩放快速反应部队的相似性矩阵坐标。
用法----------Usage----------
MDSplot(rf, fac, k=2, palette=NULL, pch=20, ...)
参数----------Arguments----------
参数:rf
an object of class RRF that contains the proximity component.
类RRF对象包含proximity组成部分。
参数:fac
a factor that was used as response to train rf.
的一个因素,已被用于响应于训练rf。
参数:k
number of dimensions for the scaling coordinates.
缩放坐标的维数。
参数:palette
colors to use to distinguish the classes; length must be the equal to the number of levels.
使用的颜色来区分的类;长度必须是相等的级别数。
参数:pch
plotting symbols to use.
绘制的符号使用。
参数:...
other graphical parameters.
其他图形参数。
值----------Value----------
The output of cmdscale on 1 - rf$proximity is returned invisibly.
的输出cmdscale1 - rf$proximity返回无形。
注意----------Note----------
If k > 2, pairs is used to produce the scatterplot matrix of the coordinates.
如果k > 2,pairs是用来产生坐标的散点图矩阵。
(作者)----------Author(s)----------
Robert Gentleman, with slight modifications by Andy Liaw
参见----------See Also----------
RRF
RRF
实例----------Examples----------
set.seed(1)
data(iris)
iris.rf <- RRF(Species ~ ., iris, proximity=TRUE,
keep.forest=FALSE)
MDSplot(iris.rf, iris$Species)
## Using different symbols for the classes:[#使用不同的符号类:]
MDSplot(iris.rf, iris$Species, palette=rep(1, 3), pch=as.numeric(iris$Species))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|