plot.RRF(RRF)
plot.RRF()所属R语言包:RRF
Plot method for RRF objects
RRF对象的绘制方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot the error rates or MSE of a RRF object
绘制的RRF对象的错误率或MSE
用法----------Usage----------
## S3 method for class 'RRF'
plot(x, type="l", main=deparse(substitute(x)), ...)
参数----------Arguments----------
参数:x
an object of class RRF.
对象类RRF。
参数:type
type of plot.
类型图。
参数:main
main title of the plot.
主标题的图。
参数:...
other graphical parameters.
其他图形参数。
值----------Value----------
Invisibly, the error rates or MSE of the RRF object. If the object has a non-null test component, then the returned object is a matrix where the first column is the out-of-bag estimate of error, and the second column is for the test set.
不可见的,错误率或MSE的RRF对象。如果对象具有一个非空test组件,然后返回的对象是一个矩阵,其中第一列是估计误差的袋,和第二列是为测试集。
注意----------Note----------
This function does not work for RRF objects that have type=unsupervised.
此功能并不适用于RRF对象有type=unsupervised的。
If the x has a non-null test component, then the test set errors are also plotted.
如果x有一个非空test组件,然后测试集的错误也被绘制。
(作者)----------Author(s)----------
Andy Liaw
参见----------See Also----------
RRF
RRF
实例----------Examples----------
data(mtcars)
plot(RRF(mpg ~ ., mtcars, keep.forest=FALSE, ntree=100), log="y")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|