Uses of Class
InstanceSet

Uses of InstanceSet in <Unnamed>
 

Methods in <Unnamed> with parameters of type InstanceSet
 double DecisionTree.computeErrorRate(InstanceSet testSet)
          Compute the error rate of the decision tree on the given test set.
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).
 void DecisionTree.printDecisions(InstanceSet testSet)
          Print out the decision of this decision tree on every instance in the given test set.