|
Oracle Data Mining Java API Reference 10g Release 1 (10.1) B12276-01 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.dmt.odm.model.TreeNode
An instance of TreeNode
characterizes a partition of a multidimensional dataset. It is extracted from metadata that results from a mining (training) run. This information forms part of a rule that can be used to construct a human interpretable view of factors that correlate to the target. Its ancester nodes contain the set of predicates that form a sub-rule that classifies the rows of a dataset as being in or not in the node. Its predicate, if any, define its child nodes. Nodes without children are called leaves. The set of leaves in the selected subtree form the decision tree's final partitioning of the multidimensional data. In addition, a treenode may contain a score distribution, which characterizes the distribution of data at that node with respect to a reference dataset.
Constructor Summary | |
TreeNode() |
Method Summary | |
TreeNode[] |
getChildren() Returns the array of child TreeNode s associated with this tree node. |
int |
getNodeId() Returns the node id. |
TreeNode |
getParent() Returns the parent TreeNode of this tree node. |
Predicate |
getPredicate() Returns the Predicate , if any, characterizing the relation between the node and its children. |
int |
getPredictedTargetCount() Returns the highest probability predicted target count associated with this tree node. |
float |
getPredictedTargetProbability() Returns the highest probability predicted target probability associated with this tree node. |
Category |
getPredictedTargetValue() Returns the highest probability predicted target value associated with this tree node. |
TargetItem[] |
getTargetItems() Returns an array of the target items associated with this tree node. |
int |
getTreeNum() Returns the tree number associated with this tree node. |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public TreeNode()
Method Detail |
public TargetItem[] getTargetItems()
TargetItem
[] - array of target items.public Predicate getPredicate()
Predicate
, if any, characterizing the relation between the node and its children.public TreeNode[] getChildren()
TreeNode
s associated with this tree node.public int getPredictedTargetCount()
public float getPredictedTargetProbability()
public Category getPredictedTargetValue()
public int getNodeId()
public int getTreeNum()
public TreeNode getParent()
TreeNode
of this tree node.
|
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |