Classification and Regression Trees (CART)

cartdecision-treerecursive-partitioningmachine-learningregression-treescross-validationnonparametric

Definition

CART (Classification And Regression Trees; Breiman-Friedman-Olshen-Stone 1984) is a nonparametric method that predicts an outcome by recursively partitioning the predictor space into rectangular regions and fitting a constant in each. The result is a binary decision tree: at each internal node a single predictor is split at a threshold to most reduce a node-impurity criterion; terminal nodes give the fitted class or value. The rpart package is the canonical R implementation (Therneau-Atkinson 2023).

Key Ideas

Why It Matters

Open Questions

Related