Uses of Class
weka.classifiers.trees.j48.ClassifierTree

Packages that use ClassifierTree
weka.classifiers.trees   
weka.classifiers.trees.j48   
 

Uses of ClassifierTree in weka.classifiers.trees
 

Fields in weka.classifiers.trees declared as ClassifierTree
private  ClassifierTree J48.m_root
          The decision tree
 

Uses of ClassifierTree in weka.classifiers.trees.j48
 

Subclasses of ClassifierTree in weka.classifiers.trees.j48
 class C45PruneableClassifierTree
          Class for handling a tree structure that can be pruned using C4.5 procedures.
 class PruneableClassifierTree
          Class for handling a tree structure that can be pruned using a pruning set.
 

Fields in weka.classifiers.trees.j48 declared as ClassifierTree
protected  ClassifierTree[] ClassifierTree.m_sons
          References to sons.
 

Methods in weka.classifiers.trees.j48 that return ClassifierTree
protected  ClassifierTree C45PruneableClassifierTree.getNewTree(Instances data)
          Returns a newly created tree.
protected  ClassifierTree ClassifierTree.getNewTree(Instances data)
          Returns a newly created tree.
protected  ClassifierTree ClassifierTree.getNewTree(Instances train, Instances test)
          Returns a newly created tree.
private  ClassifierTree ClassifierTree.son(int index)
          Method just exists to make program easier to read.
protected  ClassifierTree PruneableClassifierTree.getNewTree(Instances train, Instances test)
          Returns a newly created tree.