# Decision tree

> Mediated Wiki article. Canonical URL: https://mediated.wiki/source/Decision_tree
> Markdown URL: https://mediated.wiki/source/Decision_tree.md
> Source: https://en.wikipedia.org/wiki/Decision_tree
> Source revision: 1348906127
> License: Creative Commons Attribution-ShareAlike 4.0 International (https://creativecommons.org/licenses/by-sa/4.0/)

Decision support tool

This article is about decision trees in decision analysis. For the use of the term in machine learning, see [Decision tree learning](/source/Decision_tree_learning).

Traditionally, decision trees have been created manually.

Information mapping Topics and fields Business decision mapping Data visualization Graphic communication Infographics Information design Knowledge visualization Mental model Morphological analysis Ontology (information science) Schema (psychology) Visual analytics Visual language Node–link approaches Argument map Cladistics Cognitive map Concept lattice Concept map Conceptual graph Decision tree Dendrogram Graph drawing Hyperbolic tree Hypertext Issue map Issue tree Layered graph drawing Mind map Object–role modeling Organizational chart Pathfinder network Radial tree Semantic network Sociogram Timeline Topic map Tree structure ZigZag See also Design rationale Diagrammatic reasoning Entity–relationship model Geovisualization List of concept- and mind-mapping software Olog Ontology (philosophy) Problem structuring methods Semantic Web Treemapping Wicked problem v t e

A **decision tree** is a [decision support](/source/Decision_support_system) recursive partitioning structure that uses a [tree-like](/source/Tree_(graph_theory)) [model](/source/Causal_model) of decisions and their possible consequences, including [chance](/source/Probability) event outcomes, resource costs, and [utility](/source/Utility). It is one way to display an [algorithm](/source/Algorithm) that only contains conditional control statements.

Decision trees are commonly used in [operations research](/source/Operations_research), specifically in [decision analysis](/source/Decision_analysis),[1] to help identify a strategy most likely to reach a goal, but are also a popular tool in [machine learning](/source/Decision_tree_learning).

## Overview

A decision tree is a [flowchart](/source/Flowchart)-like structure in which each internal node represents a test on an attribute (e.g. whether a coin flip comes up heads or tails), each branch represents the outcome of the test, and each leaf node represents a class label (decision taken after computing all attributes). The paths from root to leaf represent [classification](/source/Classification) rules.

In [decision analysis](/source/Decision_analysis), a decision tree and the closely related [influence diagram](/source/Influence_diagram) are used as a visual and analytical decision support tool, where the [expected values](/source/Expected_value) (or [expected utility](/source/Expected_utility)) of competing alternatives are calculated.

A decision tree consists of three types of nodes:[2]

1. Decision nodes – typically represented by squares

1. Chance nodes – typically represented by circles

1. End nodes – typically represented by triangles

Decision trees are commonly used in [operations research](/source/Operations_research) and [operations management](/source/Operations_management). If, in practice, decisions have to be taken online with no recall under incomplete knowledge, a decision tree should be paralleled by a [probability](/source/Probability) model as a best choice model or online selection model [algorithm](/source/Algorithm).[*[citation needed](https://en.wikipedia.org/wiki/Wikipedia:Citation_needed)*] Another use of decision trees is as a descriptive means for calculating [conditional probabilities](/source/Conditional_probability).

Decision trees, [influence diagrams](/source/Influence_diagrams), [utility functions](/source/Utility_function), and other [decision analysis](/source/Decision_analysis) tools and methods are taught to undergraduate students in schools of business, health economics, and public health, and are examples of operations research or [management science](/source/Management_science) methods. These tools are also used to predict decisions of householders in normal and emergency scenarios.[3][4]

## Decision-tree building blocks

### Decision-tree elements

Drawn from left to right, a decision tree has only burst nodes (splitting paths) but no sink nodes (converging paths). So used manually they can grow very big and are then often hard to draw fully by hand. Traditionally, decision trees have been created manually – as the aside example shows – although increasingly, specialized software is employed.

### Decision rules

The decision tree can be [linearized](/source/Linearization) into **decision rules**,[5] where the outcome is the contents of the leaf node, and the conditions along the path form a conjunction in the if clause. In general, the rules have the form:

- *if* condition1 *and* condition2 *and* condition3 *then* outcome.

Decision rules can be generated by constructing [association rules](/source/Association_rule_learning) with the target variable on the right. They can also denote temporal or causal relations.[6]

### Decision tree using flowchart symbols

Commonly a decision tree is drawn using [flowchart](/source/Flowchart) symbols as it is easier for many to read and understand. Note there is a conceptual error in the "Proceed" calculation of the tree shown below; the error relates to the calculation of "costs" awarded in a legal action.

### Analysis example

Analysis can take into account the decision maker's (e.g., the company's) preference or [utility function](/source/Utility_function), for example:

The basic interpretation in this situation is that the company prefers B's risk and payoffs under realistic risk preference coefficients (greater than $400K—in that range of risk aversion, the company would need to model a third strategy, "Neither A nor B").

Another example, commonly used in [operations research](/source/Operations_research) courses, is the distribution of lifeguards on beaches (a.k.a. the "Life's a Beach" example).[7] The example describes two beaches with lifeguards to be distributed on each beach. There is maximum budget *B* that can be distributed among the two beaches (in total), and using a marginal returns table, analysts can decide how many lifeguards to allocate to each beach.

Lifeguards on each beach Drownings prevented in total, beach #1 Drownings prevented in total, beach #2 1 3 1 2 0 4

In this example, a decision tree can be drawn to illustrate the principles of [diminishing returns](/source/Diminishing_returns) on beach #1.

Beach decision tree

The decision tree illustrates that when sequentially distributing lifeguards, placing a first lifeguard on beach #1 would be optimal if there is only the budget for 1 lifeguard. But if there is a budget for two guards, then placing both on beach #2 would prevent more overall drownings.

Lifeguards

### Influence diagram

Much of the information in a decision tree can be represented more compactly as an [influence diagram](/source/Influence_diagram), focusing attention on the issues and relationships between events.

The rectangle on the left represents a decision, the ovals represent actions, and the diamond represents results.

## Association rule induction

Main article: [Decision tree learning](/source/Decision_tree_learning)

Decision trees can also be seen as [generative models](/source/Generative_model) of induction rules from empirical data. An optimal decision tree is then defined as a tree that accounts for most of the data, while minimizing the number of levels (or "questions").[8] Several algorithms to generate such optimal trees have been devised, such as [ID3](/source/ID3_algorithm)/4/5,[9] CLS, ASSISTANT, and CART.

## Advantages and disadvantages

Among decision support tools, decision trees (and [influence diagrams](/source/Influence_diagrams)) have several advantages. Decision trees:

- Are simple to understand and interpret. People are able to understand decision tree models after a brief explanation.

- Have value even with little hard data. Important insights can be generated based on experts describing a situation (its alternatives, probabilities, and costs) and their preferences for outcomes.

- Help determine worst, best, and expected values for different scenarios.

- Use a [white box](/source/White_box_(software_engineering)) model. If a given result is provided by a model.

- Can be combined with other decision techniques.

- The action of more than one decision-maker can be considered.

Disadvantages of decision trees:

- They are unstable, meaning that a small change in the data can lead to a large change in the structure of the optimal decision tree.

- They are often relatively inaccurate. Many other predictors perform better with similar data. This can be remedied by replacing a single decision tree with a [random forest](/source/Random_forest) of decision trees, but a random forest is not as easy to interpret as a single decision tree.

- For data including categorical variables with different numbers of levels, [information gain in decision trees](/source/Information_gain_in_decision_trees) is biased in favor of those attributes with more levels.[10]

- Calculations can get very complex, particularly if many values are uncertain and/or if many outcomes are linked.

## Optimizing a decision tree

A few things should be considered when improving the accuracy of the decision tree classifier. The following are some possible optimizations to consider when looking to make sure the decision tree model produced makes the correct decision or classification. Note that these things are not the only things to consider but only some.

### Increasing the number of levels of the tree

The [accuracy](/source/Accuracy_and_precision) of the decision tree can change based on the depth of the decision tree. In many cases, the tree's leaves are [pure](/source/Gini_impurity) nodes.[11] When a node is pure, it means that all the data in that node belongs to a single class.[12] For example, if the classes in the data set are Cancer and Non-Cancer a leaf node would be considered pure when all the sample data in a leaf node is part of only one class, either cancer or non-cancer. A deeper tree is not always better when optimizing the decision tree. A deeper tree can influence the runtime in a negative way. If a certain classification algorithm is being used, then a deeper tree could mean the runtime of this classification algorithm is significantly slower. There is also the possibility that the actual algorithm building the decision tree will get significantly slower as the tree gets deeper. If the tree-building algorithm being used splits pure nodes, then a decrease in the overall accuracy of the tree classifier could be experienced. Occasionally, going deeper in the tree can cause an accuracy decrease in general, so it is very important to test modifying the depth of the decision tree and selecting the depth that produces the best results. To summarize, observe the points below, we will define the number D as the depth of the tree.

Possible advantages of increasing the number D:

- Accuracy of the decision-tree classification model increases.

Possible disadvantages of increasing D

- Runtime issues

- Decrease in accuracy in general

- Pure node splits while going deeper can cause issues.

The ability to test the differences in classification results when changing D is imperative. We must be able to easily change and test the variables that could affect the accuracy and reliability of the decision tree-model.

### The choice of node-splitting functions

The node splitting function used can have an impact on improving the accuracy of the decision tree. For example, using the [information-gain](/source/Information_gain_in_decision_trees) function may yield better results than using the phi function. The phi function is known as a measure of "goodness" of a candidate split at a node in the decision tree. The information gain function is known as a measure of the "reduction in [entropy](/source/Entropy_(information_theory))". In the following, we will build two decision trees. One decision tree will be built using the phi function to split the nodes and one decision tree will be built using the information gain function to split the nodes.

The main advantages and disadvantages of [information gain](/source/Information_gain_in_decision_trees) and phi function

- One major drawback of information gain is that the feature that is chosen as the next node in the tree tends to have more unique values.[13]

- An advantage of information gain is that it tends to choose the most impactful features that are close to the root of the tree. It is a very good measure for deciding the relevance of some features.

- The phi function is also a good measure for deciding the relevance of some features based on "goodness".

This is the information gain function formula. The formula states the information gain is a function of the entropy of a node of the decision tree minus the entropy of a candidate split at node t of a decision tree.

- I gain ( s ) = H ( t ) − H ( s , t ) {\displaystyle I_{\textrm {gain}}(s)=H(t)-H(s,t)}

This is the phi function formula. The phi function is maximized when the chosen feature splits the samples in a way that produces homogenous splits and have around the same number of samples in each split.

- Φ ( s , t ) = ( 2 ∗ P L ∗ P R ) ∗ Q ( s | t ) {\displaystyle \Phi (s,t)=(2*P_{L}*P_{R})*Q(s|t)}

We will set D, which is the depth of the decision tree we are building, to three (D = 3). We also have the following data set of cancer and non-cancer samples and the mutation features that the samples either have or do not have. If a sample has a feature mutation then the sample is positive for that mutation, and it will be represented by one. If a sample does not have a feature mutation then the sample is negative for that mutation, and it will be represented by zero.

To summarize, C stands for cancer and NC stands for non-cancer. The letter M stands for [mutation](/source/Mutation), and if a sample has a particular mutation it will show up in the table as a one and otherwise zero.

The sample data M1 M2 M3 M4 M5 C1 0 1 0 1 1 NC1 0 0 0 0 0 NC2 0 0 1 1 0 NC3 0 0 0 0 0 C2 1 1 1 1 1 NC4 0 0 0 1 0

Now, we can use the formulas to calculate the phi function values and information gain values for each M in the dataset. Once all the values are calculated the tree can be produced. The first thing to be done is to select the root node. In information gain and the phi function we consider the optimal split to be the mutation that produces the highest value for information gain or the phi function. Now assume that M1 has the highest phi function value and M4 has the highest information gain value. The M1 mutation will be the root of our phi function tree and M4 will be the root of our information gain tree. You can observe the root nodes below

Figure 1: The left node is the root node of the tree we are building using the phi function to split the nodes. The right node is the root node of the tree we are building using information gain to split the nodes.

Now, once we have chosen the root node we can split the samples into two groups based on whether a sample is positive or negative for the root node mutation. The groups will be called group A and group B. For example, if we use M1 to split the samples in the root node we get NC2 and C2 samples in group A and the rest of the samples NC4, NC3, NC1, C1 in group B.

Disregarding the mutation chosen for the root node, proceed to place the next best features that have the highest values for information gain or the phi function in the left or right child nodes of the decision tree. Once we choose the root node and the two child nodes for the tree of depth = 3 we can just add the leaves. The leaves will represent the final classification decision the model has produced based on the mutations a sample either has or does not have. The left tree is the decision tree we obtain from using information gain to split the nodes and the right tree is what we obtain from using the phi function to split the nodes.

The resulting tree from using information gain to split the nodes

Now assume the [classification](/source/Classification) results from both trees are given using a [confusion matrix](/source/Confusion_matrix).

Information gain confusion matrix:

Predicted Actual C NC C 1 1 NC 0 4

Phi function confusion matrix:

Predicted Actual C NC C 2 0 NC 1 3

The tree using information gain has the same results when using the phi function when calculating the accuracy. When we classify the samples based on the model using information gain we get one true positive, one false positive, zero false negatives, and four true negatives. For the model using the phi function we get two true positives, zero false positives, one false negative, and three true negatives. The next step is to evaluate the effectiveness of the decision tree using some key metrics that will be discussed in the evaluating a decision tree section below. The metrics that will be discussed below can help determine the next steps to be taken when optimizing the decision tree.

### Other techniques

The above information is not where it ends for building and optimizing a decision tree. There are many techniques for improving the decision tree classification models we build. One of the techniques is making our decision tree model from a [bootstrapped](/source/Bootstrapping) dataset. The bootstrapped dataset helps remove the bias that occurs when building a decision tree model with the same data the model is tested with. The ability to leverage the power of [random forests](/source/Random_forest) can also help significantly improve the overall accuracy of the model being built. This method generates many decisions from many decision trees and tallies up the votes from each decision tree to make the final classification. There are many techniques, but the main objective is to test building your decision tree model in different ways to make sure it reaches the highest performance level possible.

## Evaluating a decision tree

It is important to know the measurements used to evaluate decision trees. The main metrics used are [accuracy](/source/Accuracy_and_precision), [sensitivity](/source/Sensitivity_and_specificity), [specificity](/source/Sensitivity_and_specificity), [precision](/source/Accuracy_and_precision), [miss rate](/source/Sensitivity_and_specificity), [false discovery rate](/source/False_discovery_rate), and [false omission rate](/source/False_omission_rate). All these measurements are derived from the number of [true positives](/source/True_positive), [false positives](/source/False_positives_and_false_negatives), [True negatives](/source/True_negative), and [false negatives](/source/False_positives_and_false_negatives) obtained when running a set of samples through the decision tree classification model. Also, a confusion matrix can be made to display these results. All these main metrics tell something different about the strengths and weaknesses of the classification model built based on your decision tree. For example, a low sensitivity with high specificity could indicate the classification model built from the decision tree does not do well identifying cancer samples over non-cancer samples.

Let us take the confusion matrix below.

Predicted Actual C NC C 11 (true positives) 45 (false negatives) NC 1 (false positive) 105 (true negatives)

We will now calculate the values accuracy, sensitivity, specificity, precision, miss rate, false discovery rate, and false omission rate.

Accuracy:

Accuracy = ( T P + T N ) / ( T P + T N + F P + F N ) {\displaystyle {\text{Accuracy}}=(TP+TN)/(TP+TN+FP+FN)}

= ( 11 + 105 ) / 162 = 71.60 % {\displaystyle =(11+105)/162=71.60\%}

Sensitivity (TPR – true positive rate):[14]

TPR = T P / ( T P + F N ) {\displaystyle {\text{TPR}}=TP/(TP+FN)}

= 11 / ( 11 + 45 ) = 19.64 % {\displaystyle =11/(11+45)=19.64\%}

Specificity (TNR – true negative rate):

TNR = T N / ( T N + F P ) {\displaystyle {\text{TNR}}=TN/(TN+FP)}

= 105 / ( 105 + 1 ) = 99.06 % {\displaystyle =105/(105+1)=99.06\%}

Precision (PPV – positive predictive value):

PPV = T P / ( T P + F P ) {\displaystyle {\text{PPV}}=TP/(TP+FP)}

= 11 / ( 11 + 1 ) = 91.66 % {\displaystyle =11/(11+1)=91.66\%}

Miss Rate (FNR – false negative rate):

FNR = F N / ( F N + T P ) {\displaystyle {\text{FNR}}=FN/(FN+TP)}

= 45 / ( 45 + 11 ) = 80.35 % {\displaystyle =45/(45+11)=80.35\%}

False discovery rate (FDR):

FDR = F P / ( F P + T P ) {\displaystyle {\text{FDR}}=FP/(FP+TP)}

= 1 / ( 1 + 11 ) = 8.30 % {\displaystyle =1/(1+11)=8.30\%}

False omission rate (FOR):

FOR = F N / ( F N + T N ) {\displaystyle {\text{FOR}}=FN/(FN+TN)}

= 45 / ( 45 + 105 ) = 30.00 % {\displaystyle =45/(45+105)=30.00\%}

Once we have calculated the key metrics we can make some initial conclusions on the performance of the decision tree model built. The accuracy that we calculated was 71.60%. The accuracy value is good to start but we would like to get our models as accurate as possible while maintaining the overall performance. The sensitivity value of 19.64% means that out of everyone who was actually positive for cancer tested positive. If we look at the specificity value of 99.06% we know that out of all the samples that were negative for cancer actually tested negative. When it comes to sensitivity and specificity it is important to have a balance between the two values, so if we can decrease our specificity to increase the sensitivity that would prove to be beneficial.[15] These are just a few examples on how to use these values and the meanings behind them to evaluate the decision tree model and improve upon the next iteration.

## See also

- [Behavior tree (artificial intelligence, robotics and control)](/source/Behavior_tree_(artificial_intelligence%2C_robotics_and_control)) – Mathematical model of plan execution

- [Binary decision diagram](/source/Binary_decision_diagram) – Data structure for Boolean functions

- [Boosting (machine learning)](/source/Boosting_(machine_learning)) – Ensemble learning method

- [Corporate finance § Valuing flexibility](/source/Corporate_finance#Valuing_flexibility) - Application of the technique in valuations

- [Decision cycle](/source/Decision_cycle) – Sequence of steps for decision-making

- [Decision list](/source/Decision_list)

- [Decision matrix](/source/Decision_matrix) – List of values for comparison

- [Decision table](/source/Decision_table) – Table specifying actions based on conditions

- [Decision tree model](/source/Decision_tree_model) – Model of computational complexity of computation

- [Design rationale](/source/Design_rationale) – Explicit listing of design decisions

- [DRAKON](/source/DRAKON) – Algorithm mapping tool

- [Markov chain](/source/Markov_chain) – Random process independent of past history

- [Random forest](/source/Random_forest) – Tree-based ensemble machine learning methods

- [Ordinal priority approach](/source/Ordinal_priority_approach) – Multiple-criteria decision analysis method

- [Odds algorithm](/source/Odds_algorithm) – Method of computing optimal strategies for last-success problems

- [Topological combinatorics](/source/Topological_combinatorics) – Mathematical subject

- [Truth table](/source/Truth_table) – Mathematical table used in logic

## References

1. **[^](#cite_ref-1)** von Winterfeldt, Detlof; Edwards, Ward (1986). "Decision trees". *Decision Analysis and Behavioral Research*. Cambridge University Press. pp. 63–89. [ISBN](/source/ISBN_(identifier)) [0-521-27304-8](https://en.wikipedia.org/wiki/Special:BookSources/0-521-27304-8).

1. **[^](#cite_ref-2)** Kamiński, B.; Jakubczyk, M.; Szufel, P. (2017). ["A framework for sensitivity analysis of decision trees"](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5767274). *Central European Journal of Operations Research*. **26** (1): 135–159. [doi](/source/Doi_(identifier)):[10.1007/s10100-017-0479-6](https://doi.org/10.1007%2Fs10100-017-0479-6). [PMC](/source/PMC_(identifier)) [5767274](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5767274). [PMID](/source/PMID_(identifier)) [29375266](https://pubmed.ncbi.nlm.nih.gov/29375266).

1. **[^](#cite_ref-3)** Xu, Ningzhe; Lovreglio, Ruggiero; Kuligowski, Erica D.; Cova, Thomas J.; Nilsson, Daniel; Zhao, Xilei (1 March 2023). "Predicting and Assessing Wildfire Evacuation Decision-Making Using Machine Learning: Findings from the 2019 Kincade Fire". *Fire Technology*. **59** (2): 793–825. [doi](/source/Doi_(identifier)):[10.1007/s10694-023-01363-1](https://doi.org/10.1007%2Fs10694-023-01363-1). [ISSN](/source/ISSN_(identifier)) [1572-8099](https://search.worldcat.org/issn/1572-8099).

1. **[^](#cite_ref-4)** Díaz-Ramírez, Jenny; Estrada-García, Juan Alberto; Figueroa-Sayago, Juliana (1 December 2023). ["Predicting transport mode choice preferences in a university district with decision tree-based models"](https://doi.org/10.1016%2Fj.cacint.2023.100118). *City and Environment Interactions*. **20** 100118. [Bibcode](/source/Bibcode_(identifier)):[2023CEnvI..2000118D](https://ui.adsabs.harvard.edu/abs/2023CEnvI..2000118D). [doi](/source/Doi_(identifier)):[10.1016/j.cacint.2023.100118](https://doi.org/10.1016%2Fj.cacint.2023.100118). [ISSN](/source/ISSN_(identifier)) [2590-2520](https://search.worldcat.org/issn/2590-2520).

1. **[^](#cite_ref-5)** Quinlan, J. R. (1987). "Simplifying decision trees". *International Journal of Man-Machine Studies*. **27** (3): 221–234. [CiteSeerX](/source/CiteSeerX_(identifier)) [10.1.1.18.4267](https://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.18.4267). [doi](/source/Doi_(identifier)):[10.1016/S0020-7373(87)80053-6](https://doi.org/10.1016%2FS0020-7373%2887%2980053-6).

1. **[^](#cite_ref-6)** K. Karimi and H.J. Hamilton (2011), "[Generation and Interpretation of Temporal Decision Rules](https://arxiv.org/abs/1004.3334)", International Journal of Computer Information Systems and Industrial Management Applications, Volume 3

1. **[^](#cite_ref-7)** Wagner, Harvey M. (1 September 1975). [*Principles of Operations Research: With Applications to Managerial Decisions*](https://archive.org/details/principlesofoper00wagn) (2nd ed.). Englewood Cliffs, NJ: Prentice Hall. [ISBN](/source/ISBN_(identifier)) [978-0-13-709592-6](https://en.wikipedia.org/wiki/Special:BookSources/978-0-13-709592-6).

1. **[^](#cite_ref-8)** R. Quinlan, ["Learning efficient classification procedures"](https://link.springer.com/chapter/10.1007%2F978-3-662-12405-5_15#page-1), *Machine Learning: an artificial intelligence approach*, Michalski, Carbonell & Mitchell (eds.), Morgan Kaufmann, 1983, p. 463–482. [doi](/source/Doi_(identifier)):[10.1007/978-3-662-12405-5_15](https://doi.org/10.1007%2F978-3-662-12405-5_15)

1. **[^](#cite_ref-9)** Utgoff, P. E. (1989). Incremental induction of decision trees. Machine learning, 4(2), 161–186. [doi](/source/Doi_(identifier)):[10.1023/A:1022699900025](https://doi.org/10.1023%2FA%3A1022699900025)

1. **[^](#cite_ref-10)** Deng, H.; Runger, G.; Tuv, E. (2011). [*Bias of importance measures for multi-valued attributes and solutions*](https://www.researchgate.net/publication/221079908). Proceedings of the 21st International Conference on Artificial Neural Networks (ICANN).

1. **[^](#cite_ref-11)** Larose, Chantal, Daniel (2014). *Discovering Knowledge in Data*. Hoboken, NJ: John Wiley & Sons. p. 167. [ISBN](/source/ISBN_(identifier)) [978-0-470-90874-7](https://en.wikipedia.org/wiki/Special:BookSources/978-0-470-90874-7).{{[cite book](https://en.wikipedia.org/wiki/Template:Cite_book)}}: CS1 maint: multiple names: authors list ([link](https://en.wikipedia.org/wiki/Category:CS1_maint:_multiple_names:_authors_list))

1. **[^](#cite_ref-12)** Plapinger, Thomas (29 July 2017). ["What is a Decision Tree?"](https://towardsdatascience.com/what-is-a-decision-tree-22975f00f3e1). *Towards Data Science*. [Archived](https://web.archive.org/web/20211210231954/https://towardsdatascience.com/what-is-a-decision-tree-22975f00f3e1) from the original on 10 December 2021. Retrieved 5 December 2021.

1. **[^](#cite_ref-13)** Tao, Christopher (6 September 2020). ["Do Not Use Decision Tree Like Thus"](https://towardsdatascience.com/do-not-use-decision-tree-like-this-369769d6104d). *Towards Data Science*. [Archived](https://web.archive.org/web/20211210231951/https://towardsdatascience.com/do-not-use-decision-tree-like-this-369769d6104d) from the original on 10 December 2021. Retrieved 10 December 2021.

1. **[^](#cite_ref-14)** ["False Positive Rate | Split Glossary"](https://www.split.io/glossary/false-positive-rate/). *Split*. Retrieved 10 December 2021.

1. **[^](#cite_ref-15)** ["Sensitivity vs Specificity"](https://www.technologynetworks.com/analysis/articles/sensitivity-vs-specificity-318222). *Analysis & Separations from Technology Networks*. Retrieved 10 December 2021.

## External links

Wikimedia Commons has media related to [decision diagrams](https://commons.wikimedia.org/wiki/Category:Decision_diagrams).

- [Extensive Decision Tree tutorials and examples](http://www.public.asu.edu/~kirkwood/DAStuff/refs/decisiontrees/index.html)

- [Gallery of example decision trees](https://github.com/SilverDecisions/SilverDecisions/wiki/Gallery)

- [Gradient Boosted Decision Trees](https://blog.datarobot.com/gradient-boosted-regression-trees)

v t e Decision theory Core concepts Ambiguity aversion Bounded rationality Choice architecture Expected utility Expected value Hyperbolic discounting Leximin Loss aversion Multi-attribute utility Path dependence Principle of indifference Prospect theory Rational choice theory Reference dependence Risk aversion Risk-seeking Satisficing Strategic dominance Subjective expected utility Sure-thing Utility theorem Decision models Anscombe-Aumann framework Causal decision Decision field theory Emotional choice Evidential decision Fuzzy-trace theory Intertemporal choice Naturalistic decision Normative model Quantum cognition Recognition-primed decision Rubicon model Savage's subjective expected utility model Decision analysis tools Analytic hierarchy process Analytic network process Cost–benefit analysis Cost-effectiveness analysis Cost–utility analysis Decision conferencing Decision curve analysis Decision rule Decision support system Decision table Decision tree Decision matrix Decisional balance sheet Gittins index Influence diagram Minimax MCDA Scoring rule Value of information perfect sample uncertainty Paradoxes and biases Allais paradox Certainty effect Cognitive bias Decoy effect Disposition effect Ellsberg paradox Endowment effect Framing effect Heuristics Newcomb's problem Pseudocertainty effect Rabin's paradox Regret St. Petersburg paradox Status quo bias Sunk cost Uncertainty and risk Deep uncertainty Exploration–exploitation Info-gap Pignistic probability Robust decision-making Related fields Behavioral economics Game theory Operations research Social choice theory Utility theory Key people David Blackwell Bruno de Finetti Morris H. DeGroot Peter C. Fishburn Gerd Gigerenzer Itzhak Gilboa Daniel Kahneman R. Duncan Luce Oskar Morgenstern Howard Raiffa Leonard J. Savage David Schmeidler Herbert Simon Amos Tversky John von Neumann Peter Wakker Category

Authority control databases International GND National Czech Republic Israel Other Yale LUX

---
Adapted from the Wikipedia article [Decision tree](https://en.wikipedia.org/wiki/Decision_tree) by Wikipedia contributors ([contributor history](https://en.wikipedia.org/wiki/Decision_tree?action=history)). Available under [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). Changes may have been made.
