Uses of Class
adams.data.spreadsheet.rowstatistic.AbstractRowStatistic
-
Packages that use AbstractRowStatistic Package Description adams.data.spreadsheet.rowscore adams.data.spreadsheet.rowstatistic adams.flow.transformer -
-
Uses of AbstractRowStatistic in adams.data.spreadsheet.rowscore
Fields in adams.data.spreadsheet.rowscore declared as AbstractRowStatistic Modifier and Type Field Description protected AbstractRowStatistic
RowStatistic. m_Statistic
the row statistic to use.Methods in adams.data.spreadsheet.rowscore that return AbstractRowStatistic Modifier and Type Method Description AbstractRowStatistic
RowStatistic. getStatistic()
Returns the row statistic in use.Methods in adams.data.spreadsheet.rowscore with parameters of type AbstractRowStatistic Modifier and Type Method Description void
RowStatistic. setStatistic(AbstractRowStatistic value)
Sets the row statistic to use. -
Uses of AbstractRowStatistic in adams.data.spreadsheet.rowstatistic
Subclasses of AbstractRowStatistic in adams.data.spreadsheet.rowstatistic Modifier and Type Class Description class
AbstractDoubleArrayRowStatistic
Ancestor for statistics that just use all numeric values in the row.class
ArrayStatistic
Pushes the numeric row through the specified array statistic.class
Distinct
Counts the distinct numeric/string values.class
IQR
Calculates the IQR (interquartile range) for a numeric row.class
LabelCounts
Counts how often a label (ie string) occurs.class
Max
Calculates the max for a numeric row.class
Mean
Calculates the mean for a numeric row.class
Median
Calculates the median for a numeric row.class
Min
Calculates the min for a numeric row.class
Missing
Counts the missing cells.class
MultiRowStatistic
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 row.
For more information, see:
WikiPedia.class
StandardDeviation
Calculates the standard deviation (population or sample).class
Sum
Calculates the sum for a numeric row.class
Unique
Counts the unique occurrences of numeric/string values.Fields in adams.data.spreadsheet.rowstatistic declared as AbstractRowStatistic Modifier and Type Field Description protected AbstractRowStatistic[]
MultiRowStatistic. m_Statistics
the statistics to calculate.Methods in adams.data.spreadsheet.rowstatistic that return AbstractRowStatistic Modifier and Type Method Description AbstractRowStatistic[]
MultiRowStatistic. getStatistics()
Returns the statistic generators in use.Methods in adams.data.spreadsheet.rowstatistic with parameters of type AbstractRowStatistic Modifier and Type Method Description void
MultiRowStatistic. setStatistics(AbstractRowStatistic[] value)
Sets the statistic generators to use. -
Uses of AbstractRowStatistic in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractRowStatistic Modifier and Type Field Description protected AbstractRowStatistic
SpreadSheetRowStatistic. m_Statistic
the statistic to generate.Methods in adams.flow.transformer that return AbstractRowStatistic Modifier and Type Method Description AbstractRowStatistic
SpreadSheetRowStatistic. getStatistic()
Returns the statistic to generateMethods in adams.flow.transformer with parameters of type AbstractRowStatistic Modifier and Type Method Description void
SpreadSheetRowStatistic. setStatistic(AbstractRowStatistic value)
Sets the statistic to generate.
-