/Understanding-decision-trees

Examples and concepts about decision trees

Primary LanguageJupyter Notebook

Understanding-decision-trees

Examples and concepts about decision trees

What is a Decision Tree?

A decision tree is a decision support tool that uses a tree-like model of decisions and their possible consequences, including chance event outcomes, resource costs, and utility. It is one way to display an algorithm that only contains conditional control statements. [1]

  • Decision Tree can also be called CART [ Classification and Regression Tree ]
  • Supervised Learning algorithm
  • Foundation of Random Forests

Other sources to be added soon! References:

[1] Wikipedia: [https://en.wikipedia.org/wiki/Decision_tree]