Decision Tree Classification

And the leaves represent outcomes like either ‘fit’, or ‘unfit’.

There are two main types of Decision Trees:Classification Trees.

Regression Trees.

1.

Classification trees (Yes/No types) :What we’ve seen above is an example of classification tree, where the outcome was a variable like ‘fit’ or ‘unfit’.

Here the decision variable is Categorical/ discrete.

Such a tree is built through a process known as binary recursive partitioning.

This is an iterative process of splitting the data into partitions, and then splitting it up further on each of the branches.

Example of a Classification Tree2.

Regression trees (Continuous data types) :Decision trees where the target variable can take continuous values (typically real numbers) are called regression trees.

(e.

g.

the price of a house, or a patient’s length of stay in a hospital)Example of Regression TreeCreation of Decision Tree :In this method a set of training examples is broken down into smaller and smaller subsets while at the same time an associated decision tree get incrementally developed.

At the end of the learning process, a decision tree covering the training set is returned.

The key idea is to use a decision tree to partition the data space into cluster (or dense) regions and empty (or sparse) regions.

In Decision Tree Classification a new example is classified by submitting it to a series of tests that determine the class label of the example.

These tests are organized in a hierarchical structure called a decision tree.

Decision Trees follow Divide-and-Conquer Algorithm.

Divide and ConquerDecision trees are built using a heuristic called recursive partitioning.

This approach is also commonly known as divide and conquer because it splits the data into subsets, which are then split repeatedly into even smaller subsets, and so on and so forth until the process stops when the algorithm determines the data within the subsets are sufficiently homogenous, or another stopping criterion has been met.

Basic Divide-and-Conquer Algorithm :Select a test for root node.

Create branch for each possible outcome of the test.

Split instances into subsets.

One for each branch extending from the node.

Repeat recursively for each branch, using only instances that reach the branch.

Stop recursion for a branch if all its instances have the same class.

Decision Tree ClassifierUsing the decision algorithm, we start at the tree root and split the data on the feature that results in the largest information gain (IG) (reduction in uncertainty towards the final decision).

In an iterative process, we can then repeat this splitting procedure at each child node until the leaves are pure.

This means that the samples at each leaf node all belong to the same class.

In practice, we may set a limit on the depth of the tree to prevent overfitting.

We compromise on purity here somewhat as the final leaves may still have some impurity.

Classifying whether an insect is a Grasshopper or a Katydid based on Antenna Length and Abdomen Length.

Advantages of Classification with Decision Trees:Inexpensive to construct.

Extremely fast at classifying unknown records.

Easy to interpret for small-sized treesAccuracy comparable to other classification techniques for many simple data sets.

Excludes unimportant features.

Disadvantages of Classification with Decision Trees:Easy to overfit.

Decision Boundary restricted to being parallel to attribute axes.

Decision tree models are often biased toward splits on features having a large number of levels.

Small changes in the training data can result in large changes to decision logic.

Large trees can be difficult to interpret and the decisions they make may seem counter intuitive.

Applications of Decision trees in real life :Biomedical Engineering (decision trees for identifying features to be used in implantable devices).

Financial analysis (Customer Satisfaction with a product or service).

Astronomy (classify galaxies).

System Control.

Manufacturing and Production (Quality control, Semiconductor manufacturing, etc).

Medicines (diagnosis, cardiology, psychiatry).

Physics (Particle detection).

.

. More details

Leave a Reply