margin: Margins of randomForest Classifier

Description Usage Arguments Value Author(s) See Also Examples

Description

Compute or plot the margin of predictions from a randomForest classifier.

Usage

1
2
3
4
5
6
## S3 method for class 'randomForest'
margin(x, ...)
## Default S3 method:
margin(x, observed, ...)
## S3 method for class 'margin'
plot(x, sort=TRUE, ...)

Arguments

x

an object of class randomForest, whose type is not regression, or a matrix of predicted probabilities, one column per class and one row per observation. For the plot method, x should be an object returned by margin.

observed

the true response corresponding to the data in x.

sort

Should the data be sorted by their class labels?

...

other graphical parameters to be passed to plot.default.

Value

For margin, the margin of observations from the randomForest classifier (or whatever classifier that produced the predicted probability matrix given to margin). The margin of a data point is defined as the proportion of votes for the correct class minus maximum proportion of votes for the other classes. Thus under majority votes, positive margin means correct classification, and vice versa.

Author(s)

Robert Gentlemen, with slight modifications by Andy Liaw

See Also

randomForest

Examples

1
2
3
4
set.seed(1)
data(iris)
iris.rf <- randomForest(Species ~ ., iris, keep.forest=FALSE)
plot(margin(iris.rf))

Example output

randomForest 4.6-12
Type rfNews() to see new features/changes/bug fixes.

randomForest documentation built on May 2, 2019, 5:54 p.m.