Inheritance diagram for kddml.Core.DataMining.ClassificationTrees.CompoundTreeManager:
Public Member Functions | |
int | getNumberOfTrees () |
NodeManager[] | getTrees () |
void | addTree (NodeManager tree) |
void | removeTree (int index) throws TreeModelException |
abstract String | classify (String[] values) |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Returns the number of trees belonging to this compound tree.
Implemented in kddml.Core.DataMining.ClassificationTrees.CompoundTree. |
|
Returns all the trees belonging to this compound tree. Output trees can be either a simple tree, or another compound tree.
Implemented in kddml.Core.DataMining.ClassificationTrees.CompoundTree. |
|
Adds a new tree to this combination. Input tree can be either a simple tree, or a compound tree.
Implemented in kddml.Core.DataMining.ClassificationTrees.CompoundTree. |
|
Removes a tree with a specifiy index from this combination. Throws an exception if the index is out of range.
Implemented in kddml.Core.DataMining.ClassificationTrees.CompoundTree. |
|
Method used to classify an input instance. It depends from the type of combination used.
Implemented in kddml.Core.DataMining.ClassificationTrees.CompoundBaggingsTree, kddml.Core.DataMining.ClassificationTrees.CompoundBooleanTree, and kddml.Core.DataMining.ClassificationTrees.CompoundTree. |