Computes the average of the source elements.
Computes the statistics parameters of the source elements.
Computes the statistics parameters of the source elements. Emits either the rolling stats or only the final value.
Computes the maximum of the source elements.
Computes the maximum of the source elements. Emits either the rolling maximum or only the final value.
Computes the minimum of the source elements.
Computes the minimum of the source elements. Emits either the rolling minimum or only the final value.
Computes the product of the source elements.
Computes the product of the source elements. Emits either the rolling product or only the final value.
Iterates over the specified range of numeric values and emits each item.
A class for tracking the statistics of a set of numbers (count, mean and variance) in a numerically robust way.
A class for tracking the statistics of a set of numbers (count, mean and variance) in a numerically robust way. Includes support for merging two Stats objects. Based on Welford and Chan's algorithms for running variance.
Computes the sum of the source elements.
Computes the sum of the source elements. Emits either the rolling sum or only the final value.
Factory for Avg instances.
Factory for BasicStats instances.
Factory for Max instances.
Factory for Min instances.
Factory for Mul instances.
Factory for Range instances.
Stats companion object.
Factory for Sum instances.
Computes the average of the source elements. Emits either the rolling average or only the final value.