Click here to Skip to main content
15,887,474 members
Articles / Programming Languages / C#
Article

ID3 Decision Tree Algorithm in C#

Rate me:
Please Sign up or sign in to vote.
3.05/5 (44 votes)
21 Oct 20031 min read 307.9K   20.2K   58   56
Sample of ID3 Decision Tree Algorithm in C#

Image 1

Introduction

The algorithm ID3 (Quinlan) uses the method top-down induction of decision trees. Given a set of classified examples a decision tree is induced, biased by the information gain measure, which heuristically leads to small trees. The examples are given in attribute-value representation. The set of possible classes is finite. Only tests, that split the set of instances of the underlying example languages depending on the value of a single attribute are supported.

Details

Depending on whether the attributes are nominal or numerical, the tests either

  • have a successor for each possible attribute value, or
  • split according to a comparison of an attribute value to a constant, or depending on if an attribute value belongs to a certain interval or not.

The algorithm starts with the complete set of examples, a set of possible tests and the root node as the actual node. As long as the examples propagated to a node do not all belong to the same class and there are tests left,

  • a test with highest information gain is chosen,
  • the corresponding set of successors is created for the actual node,
  • each example is propagated to the successor given by the chosen test,
  • ID3 is called recursively for all successors.

How it works

The core of sample is builded with 3 classes (Attribute, TreeNode and DecisionTreeID3).

  • TreeNode - are the nodes of the decision tree;
  • Attribute - is the class with have a name e any possible values;
  • DecisionTreeID3 - is the class what get a data samples and generate a decision tree.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer iddi
Brazil Brazil
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: How you defined new attributes in main? Pin
pol_chu2-Oct-10 19:16
pol_chu2-Oct-10 19:16 
GeneralAn error report [modified] Pin
pol_chu9-Sep-10 22:44
pol_chu9-Sep-10 22:44 
Generalerror Pin
lqht25-Apr-10 8:05
lqht25-Apr-10 8:05 
GeneralError Pin
strepto125-Apr-10 6:21
strepto125-Apr-10 6:21 
Generalhi Pin
rodalyn15-Mar-10 18:15
rodalyn15-Mar-10 18:15 
Generalhelp:id3 decision tree Pin
std_112-Mar-10 1:34
std_112-Mar-10 1:34 
GeneralRe: help:id3 decision tree Pin
Sama Ramba15-Oct-10 22:36
Sama Ramba15-Oct-10 22:36 
GeneralRe: help:id3 decision tree Pin
leavetrace24-Oct-10 23:08
leavetrace24-Oct-10 23:08 
GeneralRe: help:id3 decision tree Pin
leavetrace24-Oct-10 23:13
leavetrace24-Oct-10 23:13 
GeneralRe: help:id3 decision tree Pin
leavetrace24-Oct-10 23:16
leavetrace24-Oct-10 23:16 
GeneralRe: help:id3 decision tree Pin
leavetrace24-Oct-10 23:18
leavetrace24-Oct-10 23:18 
GeneralMy vote of 1 Pin
Code Deamon20-Apr-09 4:27
Code Deamon20-Apr-09 4:27 
Questioncan not work with more than two class Pin
leavetrace1-Jan-09 18:50
leavetrace1-Jan-09 18:50 
GeneralI think there's a mistake, correct me if i'm wrong Pin
rock_me1-Jul-08 6:56
rock_me1-Jul-08 6:56 
QuestionDo u interested in association rule? Pin
alice_nhan27-Nov-07 4:39
alice_nhan27-Nov-07 4:39 
Answerfind duplicate item in childsample [modified] Pin
alice_nhan27-Nov-07 4:34
alice_nhan27-Nov-07 4:34 
GeneralRe: find duplicate item in childsample Pin
leavetrace12-Jan-09 11:36
leavetrace12-Jan-09 11:36 
GeneralTranslated Version (English) of this Algorithm Pin
kirankonathala20-Apr-07 10:16
kirankonathala20-Apr-07 10:16 
GeneralRe: Translated Version (English) of this Algorithm Pin
kroket30-Dec-07 0:40
kroket30-Dec-07 0:40 
GeneralRe: Translated Version (English) of this Algorithm Pin
jingweidu25-Mar-08 0:58
jingweidu25-Mar-08 0:58 
GeneralRe: Translated Version (English) of this Algorithm Pin
Vaasugi16-Aug-08 21:16
Vaasugi16-Aug-08 21:16 
GeneralRe: Translated Version (English) of this Algorithm Pin
wesemy19-Aug-08 3:51
wesemy19-Aug-08 3:51 
GeneralRe: Translated Version (English) of this Algorithm Pin
mikaal10018-Mar-09 6:49
mikaal10018-Mar-09 6:49 
GeneralRe: Translated Version (English) of this Algorithm Pin
u06050943-Apr-09 16:47
u06050943-Apr-09 16:47 
GeneralRe: Translated Version (English) of this Algorithm Pin
Code Deamon20-Apr-09 4:16
Code Deamon20-Apr-09 4:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.