Regression trees follow a top down greedy approach.

Regression trees follow a top down greedy approach. Correct Answer True

Regression trees follow a top down greedy approach. It begins from the top of tree when all the observations are available in a single region and successively splits the predictor space into two new branches down the tree (Top down approach). It looks for the best variable in the current split (Greedy approach).

Related Questions