Uses of Class
tech.tablesaw.aggregate.NumericAggregateFunction
Packages that use NumericAggregateFunction
-
Uses of NumericAggregateFunction in tech.tablesaw.aggregate
Fields in tech.tablesaw.aggregate declared as NumericAggregateFunctionModifier and TypeFieldDescriptionstatic final NumericAggregateFunction
AggregateFunctions.change
A function that takes aNumericColumn
argument and returns the difference between the last and first itemsstatic final NumericAggregateFunction
AggregateFunctions.cv
A function that takes aNumericColumn
argument and returns the coefficient of variation (stdDev/mean) of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.first
A function that takes aNumericColumn
argument and returns the first item without sortingstatic final NumericAggregateFunction
AggregateFunctions.geometricMean
A function that takes aNumericColumn
argument and returns the geometric mean of all values in the columnstatic final NumericAggregateFunction
AggregateFunctions.kurtosis
A function that takes aNumericColumn
argument and returns the kurtosis of its valuesstatic final NumericAggregateFunction
AggregateFunctions.last
A function that takes aNumericColumn
argument and returns the last item without sortingstatic final NumericAggregateFunction
AggregateFunctions.max
A function that takes aNumericColumn
argument and returns the largeset value in the columnstatic final NumericAggregateFunction
AggregateFunctions.mean
A function that takes aNumericColumn
argument and returns the mean of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.median
A function that takes aNumericColumn
argument and returns the median of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.min
A function that takes aNumericColumn
argument and returns the smallest value in the columnstatic final NumericAggregateFunction
AggregateFunctions.pctChange
A function that takes aNumericColumn
argument and returns the percent difference between the last and first itemsstatic final NumericAggregateFunction
AggregateFunctions.percentile90
A function that takes aNumericColumn
argument and returns the 90th percentile of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.percentile95
A function that takes aNumericColumn
argument and returns the 95th percentile of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.percentile99
A function that takes aNumericColumn
argument and returns the 99th percentile of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.populationVariance
A function that takes aNumericColumn
argument and returns the population variance of all values in the columnstatic final NumericAggregateFunction
AggregateFunctions.product
A function that takes aNumericColumn
argument and returns the product of all values in the columnstatic final NumericAggregateFunction
AggregateFunctions.quadraticMean
A function that takes aNumericColumn
argument and returns the quadratic mean, aka, the root-mean-squarestatic final NumericAggregateFunction
AggregateFunctions.quartile1
A function that takes aNumericColumn
argument and returns the first quartile of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.quartile3
A function that takes aNumericColumn
argument and returns the third quartile of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.range
A function that takes aNumericColumn
argument and returns the difference between the largest and smallest values in the columnstatic final NumericAggregateFunction
AggregateFunctions.skewness
A function that takes aNumericColumn
argument and returns the skewness of its valuesstatic final NumericAggregateFunction
AggregateFunctions.standardDeviation
Deprecated.static final NumericAggregateFunction
AggregateFunctions.stdDev
A function that takes aNumericColumn
argument and returns the standard deviation of its valuesstatic final NumericAggregateFunction
AggregateFunctions.sum
A function that takes aNumericColumn
argument and returns the sum of the values in the columnstatic final NumericAggregateFunction
AggregateFunctions.sumOfLogs
A function that takes aNumericColumn
argument and returns the sumOfLogs of its valuesstatic final NumericAggregateFunction
AggregateFunctions.sumOfSquares
A function that takes aNumericColumn
argument and returns the sumOfSquares of its valuesstatic final NumericAggregateFunction
AggregateFunctions.variance
A function that takes aNumericColumn
argument and returns the variance of its values -
Uses of NumericAggregateFunction in tech.tablesaw.api
Methods in tech.tablesaw.api with parameters of type NumericAggregateFunctionModifier and TypeMethodDescriptiondefault Double
NumericColumn.summarize
(Selection selection, NumericAggregateFunction function) Summarizes the data in this column for all rows where the current value matches the selection criteria -
Uses of NumericAggregateFunction in tech.tablesaw.table
Methods in tech.tablesaw.table with parameters of type NumericAggregateFunctionModifier and TypeMethodDescriptiondouble
TableSlice.reduce
(String numberColumnName, NumericAggregateFunction function) Returns the result of applying the given function to the specified column
AggregateFunctions.stdDev
instead