| Interface | Description |
|---|---|
| AvlTreeReservoir.Algorithm | |
| AvlTreeReservoir.RandomGenerator |
| Class | Description |
|---|---|
| AvlTree<T> | |
| AvlTreeReservoir<T> |
Statistical reservoir of a fixed size capable calculating percentile
This reservoir taken from https://www.npmjs.com/package/reservoir
This reservoir has been modified by avl tree (https://www.npmjs.com/package/avl-sorted-list)
Array which contains all data was removed and instead of it add tree
|
| NumberAvlTreeReservoir<T extends Number> | |
| Reservoir |
FIFO-like reservoir of a fixed size capable
calculating running sums, min/max, average, msdev and stddev
msdev and stddev calculation by Naive algorithm
(Mean square deviation) msdev = sqrt((∑{i = from 1 to n}(Xi)^2 -(∑{i = from 1 to n}Xi)^2 / N) / N)
(Standard deviation) stddev = sqrt((∑{i = from 1 to n}(Xi)^2 -(∑{i = from 1 to n}Xi)^2 / N) / N - 1)
link: https://goo.gl/MAEGP2
|
| StatisticalReservoir |
Statistical reservoir of a fixed size capable calculating percentiles
This reservoir is derived from https://www.npmjs.com/package/reservoir
and was integrated with an avl tree (https://www.npmjs.com/package/avl-sorted-list)
|
Copyright © 2021. All rights reserved.