Inheritance diagram for kddml.Core.DataMining.ClassificationTrees.SimpleNodeManager:
Public Member Functions | |
Enumeration | getChildren () |
double | getRecordCount () |
String | getScore () |
int | getLevel () |
int | getNumOfChildren () |
SimpleNodeManager | getParent () |
Predicate | getPredicate () |
void | setDistribution (ScoreDistributionManager score_distribution) |
ScoreDistributionManager | getDistribution () |
boolean | isLeaf () |
boolean | isRoot () |
void | addChild (SimpleNodeManager node) |
SimpleNodeManager | getChild (int index) throws TreeModelException |
void | setRecordCount (double record_count) |
int | getDepth () |
int | getNumberOfLeaves () |
Vector | getLeaves () |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Returns the direct children of this node or null if the node is a leaf node. If null is returned, then isLeaf() must return true for this node and getNumChildren() must return 0.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the number of cases assigned to this tree node or -1 if the value is not specified.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Return the category of the node assigned by the algorithm.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the level of this node where level(root)=1. If 1 is returned, then getParent() must return null.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the number of children available for this tree node. If 0 is returned, then isLeaf() must return true for this node and getChildren() must return null.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns parent of this node or null if the node has no parent. If null is returned, then getLevel() of this node must return 1.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the predicate assigned to this node.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Sets the score distribution to this node
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the score distribution of this node. Returns null if no score distribution is created.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns true if this node is a leaf.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns true if the node is the root
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Adds a new child to this node. Adds the child to the end.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the i-esim child of this node. Throws an exception if index is out of bound or the node do not have children.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Sets the recond count value to this node.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the depth of this node where the leaves have depth equal to 0.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the number of leaves for this node.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |
|
Returns the list of leaves for this node. Returns an empty vector if the node is a leaf.
Implemented in kddml.Core.DataMining.ClassificationTrees.SimpleNode. |