Uses of Class
org.knime.base.node.mine.decisiontree2.model.DecisionTreeNode

Packages that use DecisionTreeNode
org.knime.base.node.mine.decisiontree2.learner   
org.knime.base.node.mine.decisiontree2.model This package contains code for a decision tree model. 
 

Uses of DecisionTreeNode in org.knime.base.node.mine.decisiontree2.learner
 

Methods in org.knime.base.node.mine.decisiontree2.learner that return DecisionTreeNode
 DecisionTreeNode PruningResult.getNode()
          Returns the decision tree of this pruning result.
 

Constructors in org.knime.base.node.mine.decisiontree2.learner with parameters of type DecisionTreeNode
PruningResult(double qualityValue, DecisionTreeNode node)
          Creates a pruning result from a node and its quality value (e.g.
 

Uses of DecisionTreeNode in org.knime.base.node.mine.decisiontree2.model
 

Subclasses of DecisionTreeNode in org.knime.base.node.mine.decisiontree2.model
 class DecisionTreeNodeLeaf
          The Leaf of a decision tree.
 class DecisionTreeNodeSplit
          An abstract implementation of an inner node of a decision tree, i.e.
 class DecisionTreeNodeSplitContinuous
          Deprecated. 
 class DecisionTreeNodeSplitNominal
          Deprecated. 
 class DecisionTreeNodeSplitNominalBinary
          Deprecated. 
 class DecisionTreeNodeSplitPMML
          Decision tree split node that supports PMML predicates to partition the data.
 

Methods in org.knime.base.node.mine.decisiontree2.model that return DecisionTreeNode
static DecisionTreeNode DecisionTreeNode.createNewNode(Node xmlNode, DataCellStringMapper mapper)
          Create new node from XML-information.
static DecisionTreeNode DecisionTreeNode.createNodeFromPredictorParams(ModelContentRO predParams, DecisionTreeNode parent)
          Creates a new DecisionTreeNode (and all it's children!) based on an model content object.
protected  DecisionTreeNode DecisionTreeNodeSplit.getChildNodeAt(int pos)
          Return DecisionTreeNode at specific branch.
 DecisionTreeNode[] DecisionTreeNodeSplit.getChildren()
          Returns the children.
 DecisionTreeNode DecisionTreeNodeSplitPMML.getDefaultChild()
           
 DecisionTreeNode DecisionTree.getRootNode()
           
 

Methods in org.knime.base.node.mine.decisiontree2.model that return types with arguments of type DecisionTreeNode
 Enumeration<DecisionTreeNode> DecisionTreeNodeSplit.children()
           
abstract  Enumeration<DecisionTreeNode> DecisionTreeNode.children()
           
 Enumeration<DecisionTreeNode> DecisionTreeNodeLeaf.children()
          
 

Methods in org.knime.base.node.mine.decisiontree2.model with parameters of type DecisionTreeNode
 void DecisionTreeNodeSplit.addNode(DecisionTreeNode node, int index)
          Add the given node to this node at the given branch index.
 boolean DecisionTreeNodeSplit.addNodeToTreeDepthFirst(DecisionTreeNode node, int ix)
          Add a new node to the tree structure based on a depth-first indexing strategy.
 boolean DecisionTreeNodeSplitNominalBinary.addNodeToTreeDepthFirst(DecisionTreeNode node, int ix)
          Deprecated. Add a new node to the tree structure based on a depth-first indexing strategy.
abstract  boolean DecisionTreeNode.addNodeToTreeDepthFirst(DecisionTreeNode node, int ix)
          Add a new node to the tree structure based on a depth-first indexing strategy.
 boolean DecisionTreeNodeSplitContinuous.addNodeToTreeDepthFirst(DecisionTreeNode node, int ix)
          Deprecated. Add a new node to the tree structure based on a depth-first indexing strategy.
 boolean DecisionTreeNodeLeaf.addNodeToTreeDepthFirst(DecisionTreeNode node, int ix)
          Add a new node to the tree structure based on a depth-first indexing strategy.
 boolean DecisionTreeNodeSplitNominal.addNodeToTreeDepthFirst(DecisionTreeNode node, int ix)
          Deprecated. Add a new node to the tree structure based on a depth-first indexing strategy.
static DecisionTreeNode DecisionTreeNode.createNodeFromPredictorParams(ModelContentRO predParams, DecisionTreeNode parent)
          Creates a new DecisionTreeNode (and all it's children!) based on an model content object.
 void DecisionTreeNodeSplit.replaceChild(DecisionTreeNode oldNode, DecisionTreeNode newNode)
          Replace the given child by the new given one.
 void DecisionTreeNode.setParent(DecisionTreeNode parent)
          Set parent of this node.
 void DecisionTree.setRoot(DecisionTreeNode root)
          Sets a new root node.
 

Constructors in org.knime.base.node.mine.decisiontree2.model with parameters of type DecisionTreeNode
DecisionTree(DecisionTreeNode rootNode, String classifyColumn)
          Create DecisionTree based on a root node to which the remainder of the tree is already attached.
DecisionTree(DecisionTreeNode rootNode, String classifyColumn, PMMLMissingValueStrategy mvStrategy)
          Create DecisionTree based on a root node to which the remainder of the tree is already attached.
DecisionTree(DecisionTreeNode rootNode, String classifyColumn, PMMLMissingValueStrategy mvStrategy, PMMLNoTrueChildStrategy ntcStrategy)
          Create DecisionTree based on a root node to which the remainder of the tree is already attached.
DecisionTreeNodeSplitContinuous(int nodeId, DataCell majorityClass, LinkedHashMap<DataCell,Double> classCounts, String splitAttribute, DecisionTreeNode[] children, double splitThreshold)
          Deprecated. Constructor of base class.
DecisionTreeNodeSplitNominal(int nodeId, DataCell majorityClass, LinkedHashMap<DataCell,Double> classCounts, String splitAttribute, DataCell[] splitValues, DecisionTreeNode[] children)
          Deprecated. Constructor of base class.
DecisionTreeNodeSplitNominalBinary(int nodeId, DataCell majorityClass, LinkedHashMap<DataCell,Double> classCounts, String splitAttribute, DataCell[] splitValues, int[] splitMappingsLeft, int[] splitMappingsRight, DecisionTreeNode[] children)
          Deprecated. Constructor for a nominal split in binary format.
DecisionTreeNodeSplitPMML(int nodeId, DataCell majorityClass, LinkedHashMap<DataCell,Double> classCounts, String splitAttribute, PMMLPredicate[] splitPredicates, DecisionTreeNode[] children)
          Constructor of base class.
DecisionTreeNodeSplitPMML(int nodeId, DataCell majorityClass, LinkedHashMap<DataCell,Double> classCounts, String splitAttribute, PMMLPredicate[] splitPredicates, DecisionTreeNode[] children, int defaultChild)
          Constructor of base class.
DecisionTreeNodeView(DecisionTreeNode node)
          Constructor.
 



Copyright, 2003 - 2010. All rights reserved.
University of Konstanz, Germany.
Chair for Bioinformatics and Information Mining, Prof. Dr. Michael R. Berthold.
You may not modify, publish, transmit, transfer or sell, reproduce, create derivative works from, distribute, perform, display, or in any way exploit any of the content, in whole or in part, except as otherwise expressly permitted in writing by the copyright owner or as specified in the license file distributed with this product.