Package | Description |
---|---|
tech.tablesaw.aggregate | |
tech.tablesaw.api | |
tech.tablesaw.table |
Modifier and Type | Field and Description |
---|---|
static NumericAggregateFunction |
AggregateFunctions.change
A function that returns the difference between the last and first items
|
static NumericAggregateFunction |
AggregateFunctions.cv
A function that calculates the coefficient of variation (stdDev/mean) of the values in the
column
|
static NumericAggregateFunction |
AggregateFunctions.first
A function that returns the first item
|
static NumericAggregateFunction |
AggregateFunctions.geometricMean |
static NumericAggregateFunction |
AggregateFunctions.kurtosis |
static NumericAggregateFunction |
AggregateFunctions.last
A function that returns the last item
|
static NumericAggregateFunction |
AggregateFunctions.max |
static NumericAggregateFunction |
AggregateFunctions.mean
A function that calculates the mean of the values in the column param
|
static NumericAggregateFunction |
AggregateFunctions.median |
static NumericAggregateFunction |
AggregateFunctions.min |
static NumericAggregateFunction |
AggregateFunctions.pctChange
A function that returns the difference between the last and first items
|
static NumericAggregateFunction |
AggregateFunctions.percentile90 |
static NumericAggregateFunction |
AggregateFunctions.percentile95 |
static NumericAggregateFunction |
AggregateFunctions.percentile99 |
static NumericAggregateFunction |
AggregateFunctions.populationVariance |
static NumericAggregateFunction |
AggregateFunctions.product |
static NumericAggregateFunction |
AggregateFunctions.quadraticMean
Returns the quadratic mean, aka, the root-mean-square
|
static NumericAggregateFunction |
AggregateFunctions.quartile1 |
static NumericAggregateFunction |
AggregateFunctions.quartile3 |
static NumericAggregateFunction |
AggregateFunctions.range |
static NumericAggregateFunction |
AggregateFunctions.skewness |
static NumericAggregateFunction |
AggregateFunctions.standardDeviation
Deprecated.
use
AggregateFunctions.stdDev instead |
static NumericAggregateFunction |
AggregateFunctions.stdDev |
static NumericAggregateFunction |
AggregateFunctions.sum
A function that calculates the sum of the values in the column param
|
static NumericAggregateFunction |
AggregateFunctions.sumOfLogs |
static NumericAggregateFunction |
AggregateFunctions.sumOfSquares |
static NumericAggregateFunction |
AggregateFunctions.variance |
Modifier and Type | Method and Description |
---|---|
default Double |
NumericColumn.summarize(Selection selection,
NumericAggregateFunction function)
Summarizes the data in this column for all rows where the current value matches the selection
criteria
|
Modifier and Type | Method and Description |
---|---|
double |
TableSlice.reduce(String numberColumnName,
NumericAggregateFunction function)
Returns the result of applying the given function to the specified column
|
Copyright © 2020. All rights reserved.