Stats Collector Reference Source Repository

References

Class Summary

Static Public Class Summary
public

A stat collector that includes the following collector functions:

  • amean
  • count
  • count_* (a bunch of filtered counts)
  • gmean
  • hmean
  • max
  • mean
  • median
  • midRange
  • min
  • powerSumAvg_running
  • product
  • range
  • standardDeviation_running
  • standardDeviation_stable
  • sum
  • sumOfRecipricals
  • sumOfSquaredDeviations_stable
  • variance_running
  • variance_stable
public

A collector that captures amean

public

A stat collector that initially includes no collector functions.

public

A stat collector that includes the following collector functions:

  • count
  • max
  • mean
  • min
  • sum
public

A base Collector class.

public

A collector that captures count

  • The total number of data values in a data set.
public

A collector that captures a named count after a filter is applied

public

A collector that captures gmean

public

A collector that captures hmean

public

Max

A collector that captures max

  • The largest value in a sample data set.
public

A collector that captures mean

  • The sum of all of the data divided by the count; the average; mean = sum / n.
public

A collector that captures median

  • The numeric value separating the higher half of the ordered sample data from the lower half.
public

A collector that captures midRange

  • The average of the minimum and maximum of the data set.
public

Min

A collector that captures min

  • The smallest value in a sample data set.
public

A stat collector that includes the following collector functions:

  • count
  • max
  • mean
  • min
  • powerSumAvg_running
  • product
  • standardDeviation_running
  • sum
  • variance_running
public

A collector that captures powerSumAvgRunning

public

A collector that captures product

  • The result of multiplying all data values.
public

A collector that captures range

  • The range from the minimum to the maximum range = max - min
public

A collector that captures standardDeviationRunning

public

A collector that captures standardDeviationStable

public

Sum

A collector that captures sum

  • The total of all data values.
public

A collector that captures sumOfRecipricals

  • The total of all the recipricals of the data values.
public

A collector that captures sumOfSquaredDeviationsStable

public

A collector that captures values

  • This is an array of all the values collected.
public

A collector that captures valuesSorted

  • A sorted array of all the values collected.
public

A collector that captures varianceRunning

public

A collector that captures varianceStable

Function Summary

Static Public Function Summary
public

even(value: Number): Boolean

Filter even values

public

float(value: Number): Boolean

Filter float values

public

Filter integer values

public

Returns the smallest prime that divides n

public

Filter negative values

public

Filter nonZero values

public

odd(value: Number): Boolean

Filter odd values

public

Filter positive values

public

prime(value: Number): Boolean

Filter prime values

public

zero(value: Number): Boolean

Filter zero values