Clear Filters
Clear Filters

Can we consider regression tree (fine/ medium/coarse) present in regression learner app as classification and regression tree (CART)?

11 views (last 30 days)
The screen shot of the regression tree (fine/medium/coarse) present in regression learner app is shown in the attachment for easy reference.
Here classification and regression tree (CART) means classification and regression tree algorithm mentioned in the research paper titled "A classification and regression tree algorithm for heart disease modeling and prediction" by Ozcan and Peker.
The research paper is also attached as reference.

Accepted Answer

Drew
Drew on 15 Aug 2023
The short answer is yes.
MATLAB's built-in decision tree implementation uses the Classification and Regression Trees (CART) algorithm. The fitctree function is used for building decision trees for classification tasks, and the fitrtree function is used for building decision trees for regression tasks. These functions use the CART algorithm, which involves Gini impurity for classification tasks and mean squared error for regression tasks to determine the best splits for building the tree.
For more info, and available variations on the default standard CART algorithms, see:

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!