Uses of Class
weka.classifiers.trees.m5.RuleNode2
-
Packages that use RuleNode2 Package Description weka.classifiers.trees.m5 -
-
Uses of RuleNode2 in weka.classifiers.trees.m5
Fields in weka.classifiers.trees.m5 declared as RuleNode2 Modifier and Type Field Description protected RuleNode2
RuleNode2. m_left
left child nodeprotected RuleNode2
RuleNode2. m_right
right child nodeprotected RuleNode2
Rule2. m_topOfTree
the top of the m5 tree for this ruleMethods in weka.classifiers.trees.m5 that return RuleNode2 Modifier and Type Method Description RuleNode2
M5Base2. getM5RootNode()
RuleNode2
Rule2. getM5RootNode()
RuleNode2
RuleNode2. leftNode()
Get the left child of this nodeRuleNode2
RuleNode2. parentNode()
Get the parent of this nodeRuleNode2
RuleNode2. rightNode()
Get the right child of this nodeRuleNode2
Rule2. topOfTree()
Returns the top of the tree.Methods in weka.classifiers.trees.m5 with parameters of type RuleNode2 Modifier and Type Method Description void
RuleNode2. findBestLeaf(double[] maxCoverage, RuleNode2[] bestLeaf)
Find the leaf with greatest coverageConstructors in weka.classifiers.trees.m5 with parameters of type RuleNode2 Constructor Description RuleNode2(double globalDev, double globalAbsDev, RuleNode2 parent)
Creates a newRuleNode
instance.
-