Package ai.libs.jaicore.basic.aggregate.reals
This package provides a set of aggregation functions dealing with collections of doubles.
Examples are taking the min, max, mean, or median.
-
Class Summary Class Description Max The aggregation function "Max" aggregates the given values with the maximum operator, thus, returning the maximum of a list of values.Mean The aggregation function "Mean" aggregates the given values with the mean operator, thus, returning the average of a list of values.Median The aggregation function "Median" aggregates the given values with the median operator, thus, returning the median of a list of values.Min The aggregation function "Min" aggregates the given values with the minimum operator, thus, returning the minimum of a list of values.