Learn Before
Disadvantages to Using Decision Trees
-
Although trees may be easier to understand and interpret, they do not provide the same level of predictive accuracy compared to traditional regression and classification methods
-
Small changes in data can cause large changes in the final estimated tree
-
Not fit for continuous variables - While working with continuous numerical variables, decision tree loses information, when it categorizes variables in different categories.
-
Overfitting - Can create over-complex trees that do not generalize the data well and suffer from high variance. This problem gets solved by setting constraints on model parameters and pruning.
0
6
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
Decision Tree Terms
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