Uses of Class
DecisionTree

Uses of DecisionTree in <Unnamed>
 

Subclasses of DecisionTree in <Unnamed>
 class DecisionTreeInternal
          Represents an internal node in a decision tree.
 class DecisionTreeLeaf
          Represents a leaf in a decision tree.
 

Methods in <Unnamed> that return DecisionTree
static DecisionTree DecisionTree.constructDecisionTree(InstanceSet examples, java.util.ArrayList<Attribute> attributes, InstanceSet parentExamples, java.lang.String label, int depth)
          Construct a decision tree according to the recursive algorithm given in figure 18.5 of Russell and Norvig (third edition).