| Modifier and Type | Class and Description |
|---|---|
class |
AbstractTDigest |
class |
AVLTreeDigest |
class |
MergingDigest
Maintains a t-digest by collecting new points in a buffer that is then sorted occasionally and merged
into a sorted array that contains previously computed centroids.
|
| Modifier and Type | Method and Description |
|---|---|
static TDigest |
TDigest.createAvlTreeDigest(double compression)
Creates an AVLTreeDigest.
|
static TDigest |
TDigest.createDigest(double compression)
Creates a TDigest of whichever type is the currently recommended type.
|
static TDigest |
TDigest.createMergingDigest(double compression)
Creates an
MergingDigest. |
abstract TDigest |
TDigest.recordAllData()
Tell this TDigest to record the original data as much as possible for test
purposes.
|
TDigest |
MergingDigest.recordAllData()
Turns on internal data recording.
|
TDigest |
AVLTreeDigest.recordAllData() |
TDigest |
AbstractTDigest.recordAllData()
Sets up so that all centroids will record all data assigned to them.
|
| Modifier and Type | Method and Description |
|---|---|
abstract void |
TDigest.add(TDigest other)
Add all of the centroids of another TDigest to this one.
|
void |
AbstractTDigest.add(TDigest other) |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
TDigest.add(List<? extends TDigest> others) |
void |
MergingDigest.add(List<? extends TDigest> others) |
void |
AVLTreeDigest.add(List<? extends TDigest> others) |
Copyright © 2017. All rights reserved.