Uses of Class
adams.data.spreadsheet.colstatistic.AbstractColumnStatistic
-
Packages that use AbstractColumnStatistic Package Description adams.data.spreadsheet.colstatistic adams.flow.transformer -
-
Uses of AbstractColumnStatistic in adams.data.spreadsheet.colstatistic
Subclasses of AbstractColumnStatistic in adams.data.spreadsheet.colstatistic Modifier and Type Class Description class
AbstractDoubleArrayColumnStatistic
Ancestor for statistics that just use all numeric values in the column.class
ArrayStatistic
Pushes the numeric column through the specified array statistic.class
Distinct
Counts the distinct numeric/string values.class
IQR
Calculates the IQR (interquartile range) for a numeric column.class
LabelCounts
Counts how often a label (ie string) occurs.class
Max
Calculates the max for a numeric column.class
Mean
Calculates the mean for a numeric column.class
Median
Calculates the median for a numeric column.class
Min
Calculates the min for a numeric column.class
Missing
Counts the missing cells.class
MultiColumnStatistic
Combines the statistics calculated from the specified statistic generators.class
Percentile
Calculates the specified percentile.class
SignalToNoiseRatio
Calculates the signal to noise ratio for a numeric column.
For more information, see:
WikiPedia.class
StandardDeviation
Calculates the standard deviation (population or sample).class
Sum
Calculates the sum for a numeric column.class
Unique
Counts the unique occurrences of numeric/string values.Fields in adams.data.spreadsheet.colstatistic declared as AbstractColumnStatistic Modifier and Type Field Description protected AbstractColumnStatistic[]
MultiColumnStatistic. m_Statistics
the statistics to calculate.Methods in adams.data.spreadsheet.colstatistic that return AbstractColumnStatistic Modifier and Type Method Description AbstractColumnStatistic[]
MultiColumnStatistic. getStatistics()
Returns the statistic generators in use.Methods in adams.data.spreadsheet.colstatistic with parameters of type AbstractColumnStatistic Modifier and Type Method Description void
MultiColumnStatistic. setStatistics(AbstractColumnStatistic[] value)
Sets the statistic generators to use. -
Uses of AbstractColumnStatistic in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractColumnStatistic Modifier and Type Field Description protected AbstractColumnStatistic
SpreadSheetColumnStatistic. m_Statistic
the statistic to generate.Methods in adams.flow.transformer that return AbstractColumnStatistic Modifier and Type Method Description AbstractColumnStatistic
SpreadSheetColumnStatistic. getStatistic()
Returns the statistic to generateMethods in adams.flow.transformer with parameters of type AbstractColumnStatistic Modifier and Type Method Description void
SpreadSheetColumnStatistic. setStatistic(AbstractColumnStatistic value)
Sets the statistic to generate.
-