NumberStats
Extends:
A stat collector that includes the following collector functions:
- count
- max
- mean
- min
- powerSumAvg_running
- product
- standardDeviation_running
- sum
- variance_running
Example:
const stats = new NumberStats();
stats.processAll([1, 2, 3, 4, 5]);
stats.get();
Constructor Summary
Public Constructor | ||
public |
|