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