Package

software.uncharted.salt.core.analytic

numeric

Permalink

package numeric

Visibility
  1. Public
  2. All

Value Members

  1. object CountAggregator extends Aggregator[Int, Double, Double]

    Permalink

    Useful for counting records or elements within a record, where the count for an individual record is passed in as an Int

  2. object MaxAggregator extends Aggregator[Double, Double, Double]

    Permalink

    Useful for calculating the maximum value across values derived from source records

  3. object MeanAggregator extends Aggregator[Double, (Double, Double), Double]

    Permalink

    Useful for calculating the mean value across values derived from source records

  4. object MinAggregator extends Aggregator[Double, Double, Double]

    Permalink

    Useful for calculating the minimum value across values derived from source records

  5. object MinMaxAggregator extends Aggregator[Double, (Double, Double), (Double, Double)]

    Permalink

    Useful for calculating the maximum and minimum values across values derived from source records

  6. object SumAggregator extends Aggregator[Double, Double, Double]

    Permalink

    Useful for summing values derived from a record, where the sum for an individual record is passed in as a Double

Ungrouped