Learn Before
Concept
Decision Tree Terminology
A decision tree is composed of several key components that define its structure and partition logic:
- Nodes: Split points where the dataset is partitioned based on feature values.
- Split point: The threshold or decision rule that separates one class or range from another.
- Pure node: A node where all observations belong to a single class, representing perfect classification.
- Mixed node: A node containing a mixture of classes that requires further splitting.
- Leaf nodes: The terminal nodes at the end of a branch that represent the final predicted class or value.
- Informativeness of split: A measure of the information gained from a split, used to select the optimal split point.
0
1
Updated 2026-07-07
Contributors are:
Who are from:
Tags
Data Science
Related
Trees VS. Linear Models
Advantages to Using Decision Trees
Disadvantages to Using Decision Trees
Types of decision trees
Learning Decision Trees
Approaches for improving decision trees' predictions
Decision trees applied to regression and classificatioin problems
Post pruning decision trees with cost complexity pruning
Scikit learn key decision tree parameters
Decision tree key parameters
Gradient Boosted Decision Trees
Find the Accuracy Score of a Decision Tree
Decision Tree Terminology