Machine Learning / Decision Tree Machine Learning Algorithm
| Definition |
It uses a tree like structure for prediction of results. It has only one root node and can have sub nodes / leaves. |
| Used In the problems of |
Classification, regression |
| Used for variables |
categorical and continuous dependent variables |
Example of a Decision Tree
|
Weather |
Temperature |
Humidity |
Wind |
Play? |
|
Sunny |
Hot |
High |
Weak |
No |
|
Cloudy |
Hot |
High |
Weak |
Yes |
|
Sunny |
Mild |
Normal |
Strong |
Yes |
|
Cloudy |
Mild |
High |
Strong |
Yes |
|
Rainy |
Mild |
High |
Strong |
No |
|
Rainy |
Cool |
Normal |
Strong |
No |
|
Rainy |
Mild |
High |
Weak |
Yes |
|
Sunny |
Hot |
High |
Strong |
No |
|
Cloudy |
Hot |
Normal |
Weak |
Yes |
|
Rainy |
Mild |
High |
Strong |
No |
Home
Back
|