Uses of Class
com.pervasive.datarush.analytics.decisiontree.TreeNode
-
Packages that use TreeNode Package Description com.pervasive.datarush.analytics.decisiontree Provides PMML model classes for decision trees.com.pervasive.datarush.analytics.decisiontree.learner Provides the PMML learner operator and associated classes. -
-
Uses of TreeNode in com.pervasive.datarush.analytics.decisiontree
Methods in com.pervasive.datarush.analytics.decisiontree that return TreeNode Modifier and Type Method Description TreeNode
PMMLTreeModel. getRootNode()
Returns the root node element of the modelMethods in com.pervasive.datarush.analytics.decisiontree that return types with arguments of type TreeNode Modifier and Type Method Description List<TreeNode>
TreeNode. getChildren()
Returns the list of childNode
elements associated with this node.Methods in com.pervasive.datarush.analytics.decisiontree with parameters of type TreeNode Modifier and Type Method Description void
PMMLTreeModel. setRootNode(TreeNode rootNode)
Sets the root node element of the modelMethod parameters in com.pervasive.datarush.analytics.decisiontree with type arguments of type TreeNode Modifier and Type Method Description void
TreeNode. setChildren(List<TreeNode> children)
Sets the list of childNode
elements associated with this node. -
Uses of TreeNode in com.pervasive.datarush.analytics.decisiontree.learner
Methods in com.pervasive.datarush.analytics.decisiontree.learner with parameters of type TreeNode Modifier and Type Method Description static TargetCounts
TargetCounts. fromNode(DynamicEnum targetType, TreeNode node)
Public only as a matter of implementation; clients should not use this method.
-