Inheritance diagram for kddml.Core.DataMining.ClassificationTrees.ScoreDistribution:
Public Member Functions | |
ScoreDistribution (String[] categories, double[] number_of_instances) throws TreeModelException | |
ScoreDistribution (String[] categories) | |
double | getCount (String name) |
double | getPercCount (String name) |
String | getHighestCategory () |
double | getHighestValue () |
double | getTotal () |
int | getNumberOfValues () |
Enumeration | getCategories () |
String | toString () |
Protected Member Functions | |
ScoreDistribution (Vector elements) | |
boolean | updateDistribution (String value, double record_count) |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Constructor.
|
|
Constructor given the categories values for the target attribute. The number of records related to the category is 0.
|
|
Proprietary constructor given a list of PMML elements.
|
|
Returns the record count of a given category. Returns -1 if no category can be found in the target attribute.
Implements kddml.Core.DataMining.ClassificationTrees.ScoreDistributionManager. |
|
Returns the record count as percentage of a given category. Returns -1 if no category can be found in the target attribute.
Implements kddml.Core.DataMining.ClassificationTrees.ScoreDistributionManager. |
|
Returns the highest category value of this score distribution. If two or more values have the highest distribution, then the method returns the first category value.
Implements kddml.Core.DataMining.ClassificationTrees.ScoreDistributionManager. |
|
Returns the highest record count of this score distribution.
Implements kddml.Core.DataMining.ClassificationTrees.ScoreDistributionManager. |
|
Returns the total sum of record counts.
Implements kddml.Core.DataMining.ClassificationTrees.ScoreDistributionManager. |
|
Returns the number of categories for this score distribution.
Implements kddml.Core.DataMining.ClassificationTrees.ScoreDistributionManager. |
|
Updates a distribution for a given category. Returns false if the value do not exist in the hashtable. Returns true if updating has success.
|
|
Returns the list categories as enumeration.
Implements kddml.Core.DataMining.ClassificationTrees.ScoreDistributionManager. |
|
Returns a representation of this object as string.
|