Method

Splits data based on binary rules. The model predicts based on which region data falls under. Regions can only be split horizontally or vertically.

To build the tree, use a method called Recursive Binary Splitting

At a high level, we would split the predictor space into non-overlapping regions .

Regression

In a Regression problem, we would average the points of region for .

Classification

In a classification problem, we would take the majority vote of the points in region .