View source: R/relative.influence.R
relative.influence | R Documentation |
Helper functions for computing the relative influence of each variable in the gbm object.
relative.influence(object, n.trees, scale. = FALSE, sort. = FALSE)
permutation.test.gbm(object, n.trees)
gbm.loss(y, f, w, offset, dist, baseline, group = NULL, max.rank = NULL)
object |
a |
n.trees |
the number of trees to use for computations. If not provided, the the function will guess: if a test set was used in fitting, the number of trees resulting in lowest test set error will be used; otherwise, if cross-validation was performed, the number of trees resulting in lowest cross-validation error will be used; otherwise, all trees will be used. |
scale. |
whether or not the result should be scaled. Defaults to
|
sort. |
whether or not the results should be (reverse) sorted.
Defaults to |
y , f , w , offset , dist , baseline |
For |
group , max.rank |
Used internally when |
This is not intended for end-user use. These functions offer the different
methods for computing the relative influence in summary.gbm
.
gbm.loss
is a helper function for permutation.test.gbm
.
By default, returns an unprocessed vector of estimated relative
influences. If the scale.
and sort.
arguments are used,
returns a processed version of the same.
Greg Ridgeway gregridgeway@gmail.com
J.H. Friedman (2001). "Greedy Function Approximation: A Gradient Boosting Machine," Annals of Statistics 29(5):1189-1232.
L. Breiman (2001). https://www.stat.berkeley.edu/users/breiman/randomforest2001.pdf.
summary.gbm
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.