A classification and regression tree recursively splits covariate space into axis-aligned regions and assigns a constant prediction to each terminal region.
Recursive partitioning repeatedly selects a split of one current region, then applies the same splitting rule independently to the resulting child regions.
For class proportions in a tree node, Gini impurity is . For two classes it is twice ; omitting the constant factor does not change the selected split.
A random forest aggregates deeply grown decision trees fitted to bootstrap samples, while restricting each split to a random subset of predictor coordinates. Classification uses a majority vote over the trees.
The out-of-bag error predicts each training observation using only trees whose bootstrap samples omitted it, then averages the resulting losses.

Articles by others on the same topic (0)

There are currently no matching articles.