Uses of Class
weka.classifiers.trees.m5.RuleNode

Packages that use RuleNode
weka.classifiers.trees.m5   
 

Uses of RuleNode in weka.classifiers.trees.m5
 

Fields in weka.classifiers.trees.m5 declared as RuleNode
protected  RuleNode RuleNode.m_left
          child nodes
protected  RuleNode RuleNode.m_right
           
private  RuleNode RuleNode.m_parent
          the parent of this node
private  RuleNode[] Rule.m_internalNodes
          the corresponding internal nodes.
private  RuleNode Rule.m_ruleModel
          the leaf encapsulating the linear model for this rule
protected  RuleNode Rule.m_topOfTree
          the top of the m5 tree for this rule
 

Methods in weka.classifiers.trees.m5 that return RuleNode
 RuleNode RuleNode.parentNode()
          Get the parent of this node
 RuleNode RuleNode.leftNode()
          Get the left child of this node
 RuleNode RuleNode.rightNode()
          Get the right child of this node
 RuleNode Rule.topOfTree()
          Returns the top of the tree.
 RuleNode Rule.getM5RootNode()
           
 RuleNode M5Base.getM5RootNode()
           
 

Methods in weka.classifiers.trees.m5 with parameters of type RuleNode
 void RuleNode.findBestLeaf(double[] maxCoverage, RuleNode[] bestLeaf)
          Find the leaf with greatest coverage
 

Constructors in weka.classifiers.trees.m5 with parameters of type RuleNode
RuleNode(double globalDev, double globalAbsDev, RuleNode parent)
          Creates a new RuleNode instance.