Inheritance diagram for kddml.Core.DataMining.ClassificationTrees.CompoundTree:
Public Member Functions | |
CompoundTree () | |
boolean | isCompoundTree () |
abstract String | classify (String[] values) |
int | getSize () |
void | addTree (NodeManager tree) |
void | removeTree (int index) throws TreeModelException |
NodeManager[] | getTrees () |
int | getNumberOfTrees () |
Protected Member Functions | |
CompoundTree (Element node) throws TreeModelException | |
abstract Element | toXML () |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Empty constructor. |
|
Proprietary constructor given the XML element.
|
|
Returns true if the tree is a compound tree, i.e., a combination with and, or, committee of classification trees. Returns false if the tree is a simple tree.
Implements kddml.Core.DataMining.ClassificationTrees.NodeManager. |
|
Method used to classify an input instance. It depends from the type of combination used.
Implements kddml.Core.DataMining.ClassificationTrees.CompoundTreeManager. Implemented in kddml.Core.DataMining.ClassificationTrees.CompoundBaggingsTree, and kddml.Core.DataMining.ClassificationTrees.CompoundBooleanTree. |
|
Returns the size of the tree, i.e. the number of total nodes of the tree.
Implements kddml.Core.DataMining.ClassificationTrees.NodeManager. |
|
Adds a new tree to this combination. Input tree can be either a simple tree, or a compound tree.
Implements kddml.Core.DataMining.ClassificationTrees.CompoundTreeManager. |
|
Removes a tree with a specifiy index from this combination. Throws an exception if the index is out of range.
Implements kddml.Core.DataMining.ClassificationTrees.CompoundTreeManager. |
|
Returns all the trees belonging to this compound tree. Output trees can be either a simple tree, or another compound tree.
Implements kddml.Core.DataMining.ClassificationTrees.CompoundTreeManager. |
|
Returns the number of trees belonging to this compound tree.
Implements kddml.Core.DataMining.ClassificationTrees.CompoundTreeManager. |
|
Returns a representation of this object as PMML element.
Implements kddml.Core.DataMining.ClassificationTrees.Node. Implemented in kddml.Core.DataMining.ClassificationTrees.CompoundBaggingsTree, and kddml.Core.DataMining.ClassificationTrees.CompoundBooleanTree. |