How do Decision Trees handle outliers?
Updated May 16, 2026
Short answer
Decision Trees are relatively robust to outliers, but extreme values can still distort split decisions.
Deep explanation
Decision Trees are less sensitive to outliers compared to linear models because they rely on threshold-based splits rather than distances. However, outliers can still influence split thresholds, especially if they affect impurity calculations significantly. A single extreme value may create a split that isolates it, leading to unnecessary branches. Techniques like pruning or limiting depth help mitigate this effect.
Unlock with a Pro subscription to view this section.
View pricingReal-world example
No real-world example available yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProCommon mistakes
No common mistakes listed yet.
Unlock with a Pro subscription to view this section.
Upgrade to ProFollow-up questions
No follow-up questions available yet.
Unlock with a Pro subscription to view this section.
Upgrade to Pro