Inheritance diagram for kddml.Core.DataMining.ClassificationTrees.CompoundBooleanTree:
Public Member Functions | |
CompoundBooleanTree (String positive_class, String negative_class, byte combination_type) | |
byte | getCombinationType () |
String | getPositiveClass () |
String | getNegativeClass () |
String | classify (String[] values) |
String | toString () |
Static Public Attributes | |
static final byte | AND_TREE = 0 |
static final byte | OR_TREE = 1 |
Protected Member Functions | |
CompoundBooleanTree (Element el) throws TreeModelException | |
Element | toXML () |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Constructor.
|
|
Proprietary constructor given the XML element.
|
|
Returns the combination type used for this trees. Can be AND, OR.
|
|
Returns the positive class relaterd to the target attribute (eg. "yes", "true", ...).
|
|
Returns the negative class related to the target attribute (eg. "no", "false", ...).
|
|
Method used to classify an input instance. Given n distinct decision trees D1, . . . ,Dn, the AND tree (OR tree) assigns to a tuple the positive class (negative class) if all the trees D1, . . . ,Dn classify the instance with the positive class (negative class); otherwise, the negative class (positive class) is returned.
Implements kddml.Core.DataMining.ClassificationTrees.CompoundTree. |
|
Returns a representation of this object as string.
Implements kddml.Core.DataMining.ClassificationTrees.Node. |
|
Returns a representation of this object as XML element.
Implements kddml.Core.DataMining.ClassificationTrees.CompoundTree. |
|
AND tree combination. |
|
OR tree combination |