Login
Remember
Register
Ask a Question
What are the steps in making a decision tree?
+1
vote
asked
Nov 16, 2021
in
Azure
by
Robin
What are the steps in making a decision tree?
decision-tree
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 16, 2021
by
Robin
Below are the steps in making a decision tree
Take the entire data set as input.
Look for a split that maximizes the separation of the classes. A split is any test that divides the data into two sets.
Apply the split to the input data (divide step).
Re-apply steps one and two to the divided data.
Stop when you meet any stopping criteria.
This step is called pruning. Clean up the tree if you went too far doing splits.
...