RRF (version 1.9)

plot.RRF: Plot method for RRF objects

Description

Plot the error rates or MSE of a RRF object

Usage

# S3 method for RRF
plot(x, type="l", main=deparse(substitute(x)), ...)

Arguments

x

an object of class 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.

See Also

RRF

Examples

Run this code
# NOT RUN {
data(mtcars)
plot(RRF(mpg ~ ., mtcars, keep.forest=FALSE, ntree=100), log="y")
# }

Run the code above in your browser using DataCamp Workspace