AggregationFunction
The AggregationFunction class is a collection of enums that represent the aggregation functions that can be used in some Callables that perform data aggregation, such as Aggregate and PivotTable.
Definition
- class AggregationFunction
Below lists the names of available aggregation functions.
- sum
Sum of data.
- mean
Mean of data.
- median
Median of data.
- min
Minimum value.
- max
Maximum value.
- count
Number of items.
Note
Duplicate items are counted more than once.
- std
Standard deviation of data.
- var
Variance of data.