Concept
Regression Tree
The predictor space () is divided into J non-overlapping regions. Then make the same prediction for each observation that falls into the region , and the predicted value is the mean of the response values for the training observations in . The goal is to find the matrix region that minimizes the RSS of the model .
Recursion Binary Splitting: from the top of the tree (top-down), the prediction space is split to two new branches, and the determination of the optimal (best) split is limited to a particular step instead of some future step.
Cost Complexity pruning, as known as Weakest Link Pruning, is able to avoid overfitting.
1
4
Updated 2020-03-06
Tags
Data Science