Decision Tree Model
What is a Decision tree model?
What is the classification vs regression model?
What type of data is useful under Decision tree model?
Advatages
Disadvantages
What is a greedy algorithm?
A greedy algorithm is a technique of solving problems that selects the best option available at the time. It is unconcerned about whether the current best result will result in the as a whole best result.
Even if the choice was incorrect, the algorithm never reverses it. It works from the top down.
Diabetes data to predict whether the person is a diabetic person using the decision tree model
rpart = is a library used for classification
Comments
0