10a Introduction To Decision Trees Homogeneity
10a Introduction To Decision Trees Homogeneity
• Homogenity
• Entropy
• Information Gain
• Gini Index
• Implementing Decision Trees
• Implementing Random Forest
• A decision tree is a decision support tool that uses a tree-like
graph or model of decisions and their possible consequences
• A decision tree is a flowchart-like structure in which each internal
node represents a “test” on an attribute, 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 rules.
Decision trees have a natural “if … then … else …”
construction that makes it fit easily into a programmatic
structure.
They also are well suited to categorization problems where
attributes or features are systematically checked to determine
a final category.
Types of decision tree is based on the type of target
variable we have. It can be of two types