Skip to content

Developed binary decision tree from scratch using R.

Notifications You must be signed in to change notification settings

raxshah/Decision-Tree-R

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

Decision Tree in R

In this repo, I have developed binary decision tree from scratch using R. I have also implemented various overfitting prevention methods for decision tree.

Everything is developed from scratch. No packages are used.

  1. Implemented the greedy algorithm that learns a classification tree given a data set assuming all features are numerical. For this, Gini and information gain can be specified by user to decide on the best attribute to split in every step. Since it is greedy decision tree, algorithm will stop growing the tree when all examples in a node belong to the same class or the remaining examples contain identical features.

  2. Implemented 10-fold cross-validation to evaluate the accuracy of algorithm on 10 different data sets from the UCI Machine Learning Repository. Selected only those data sets where all features are numerical. In certain cases, algorithm will convert categorical features into numerical by encoding them using sparse binary representation. That is, if feature values belong to a set {blue, yellow,red, green}, it will encode this feature using 4-dimensional binary vectors such that if the feature value is blue, the encoding is (1, 0, 0, 0), if the feature value is yellow, the encoding is (0, 1, 0, 0), etc.

  3. Modified decision tree to prevent the overfitting by using 'Pessimistic error' prevention method. Used ‘pessimistic’ estimates of the generalization error by adding a penalty factor 0.5 for each node in the tree. All evaluation is carried out using 10-fold cross-validation.

  4. Modified decision tree to prevent the overfitting by using 'validation set' prevention method. Used a validation set that consists of 25% of the training partition. All evaluation is carried out using 10-fold cross-validation.

  5. Modified decision tree to prevent the overfitting by using the 'minimum description length principle' prevention method. All evaluation is carried out using 10-fold cross-validation.

Limitation

  1. It will work when all the attributes are Numeric
  2. It will work for Binary classifier only

About

Developed binary decision tree from scratch using R.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published