Classification and Regression Trees
CART is one of the most popular DT methods because
The use of DT requires a clear definition of the following 3 elements:
Advantages of CART:
Disadvantages of CART:
Things to remember:
1. During the splitting at intermediate nodes, an object goes to left if the condition is met, else goes to right. [For continuous data, x<=condition, for nominal data, x={A,B,C,D}
2. The split is always binary
3. An attribute can be used multiple times.
4. In decision trees, the value stored in a terminal node depends on the type of data the tree is predicting: categorical or continuous.