gbm (version 0.6)

summary.gbm: Summary of a gbm object

Description

Computes the relative influence of each variable in the gbm object.

Usage

summary.gbm(object,
            cBars=min(10,object$cCols),
            n.trees=object$n.trees,
            plotit=TRUE,...)

Arguments

object
a gbm object created from an initial call to gbm.
cBars
the number of bars to plot. Only the variables with the cBars largest relative influence will appear in the barplot.
n.trees
the number of trees used to generate the plot. Only the first n.trees trees will be used.
plotit
an indicator as to whether the plot is generated.
...
other arguments passed to the plot function.

Value

  • Returns a data frame where the first component is the variable name and the second is the computed relative influence, normalized to sum to 100.

Details

Details to come later

References

J.H. Friedman (2001). "Greedy Function Approximation: A Gradient Boosting Machine," Annals of Statistics 29(4).

See Also

gbm