Inheritance diagram for kddml.Core.DataMining.Clustering.DiscreteStatisticField:
Public Member Functions | |
DiscreteStatisticField (String field_name) | |
boolean | addValue (String value, double frequency) |
boolean | isContinuous () |
boolean | isDiscrete () |
double | getProbability (String value) throws ClusteringModelException |
double[] | getProbability () throws ClusteringModelException |
String | getProbableValue () throws ClusteringModelException |
String[] | getCategories () |
double[] | getFrequencies () |
String | toString () |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2003-2005
Company: Universita' di Pisa - Dipartimento di Informatica
|
Constructor given the field name. Builds an empty field, with no categories.
|
|
Adds a new category with cluster frequency. Return true if the category is added to the field. Returns false if the field already contain the category name.
Implements kddml.Core.DataMining.Clustering.DiscreteStatisticFieldManager. |
|
Returns true if the field is continuous.
Implements kddml.Core.DataMining.Clustering.StatisticFieldManager. |
|
Returns true if the field is discrete.
Implements kddml.Core.DataMining.Clustering.StatisticFieldManager. |
|
Returns the probability value for the input category.
Implements kddml.Core.DataMining.Clustering.DiscreteStatisticFieldManager. |
|
Returns the distribution probability of all categories. Ordering of the output object respects the ordering of the method getCategories().
Implements kddml.Core.DataMining.Clustering.DiscreteStatisticFieldManager. |
|
Returns the must probable category value.
Implements kddml.Core.DataMining.Clustering.DiscreteStatisticFieldManager. |
|
Returns the categories of this field. Ordering of the output object respects the ordering of the method getProbability().
Implements kddml.Core.DataMining.Clustering.DiscreteStatisticFieldManager. |
|
Returns the frequency of all categories. Missing value are not included. Ordering of the output object respects the ordering of the method getCategories().
Implements kddml.Core.DataMining.Clustering.DiscreteStatisticFieldManager. |
|
Returns a representation of this object as string.
|