class: DecisionTreeNode

public class: DecisionTreeNode
Author:
Project: Phase: 1.0; Status: Proposed; Version: 1.0; Complexity: 1
Dates: Created: 7.12.2005 12:26:02; Modified: 12.12.2005 21:48:33;
Flags: Active: false; IsRoot: false; IsLeaf: false;
Extension Points:
UUID: {93096AF0-4D4B-4c07-8178-1EB2E22DF238}
One node of the tree with all the needed information.

 

Goto: Fields, Methods

See also: DecisionTreeNodes, DecisionTree, DecisionTree, StepInfo

Appears in: Tree classes

Connections
 
DecisionTreeNode Attributes
Attribute Details
public DecisionTreeNodes
  Nodes
Notes: Children
public string
  SQLWhere
Notes: SQL condition for this subnode (empty in root).
public object
  Class
Notes: Result class - even in not leaf.
public double
  Prob
Notes: Probability of the result class.
public string
  SplitterDescription
Notes: Description of the splitter, used between this node and its subnodes.
public int
  Records
Notes: Number of records in the node in the moment.
 
DecisionTreeNode Methods
Operation Details
public
DecisionTreeNode():
Sequential
Notes: Constructor.
public
SaveToXML(
   XmlTextWriter w):void
Sequential
Notes: Saves a node with a subtree to XML.
public
LoadFromXML(
   XmlTextReader r):void
Sequential
Notes: Loads a node with a subtree from XML.