Uses of Class
com.tdunning.math.stats.TDigest
-
Packages that use TDigest Package Description com.tdunning.math.stats org.elasticsearch.search.aggregations.metrics -
-
Uses of TDigest in com.tdunning.math.stats
Subclasses of TDigest in com.tdunning.math.stats Modifier and Type Class Description classAbstractTDigestclassAVLTreeDigestclassMergingDigestMaintains 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.Methods in com.tdunning.math.stats that return TDigest Modifier and Type Method Description static TDigestTDigest. createAvlTreeDigest(double compression)Creates an AVLTreeDigest.static TDigestTDigest. createDigest(double compression)Creates a TDigest of whichever type is the currently recommended type.static TDigestTDigest. createMergingDigest(double compression)Creates anMergingDigest.TDigestAbstractTDigest. recordAllData()Sets up so that all centroids will record all data assigned to them.TDigestAVLTreeDigest. recordAllData()TDigestMergingDigest. recordAllData()Turns on internal data recording.abstract TDigestTDigest. recordAllData()Tell this TDigest to record the original data as much as possible for test purposes.Methods in com.tdunning.math.stats with parameters of type TDigest Modifier and Type Method Description voidAbstractTDigest. add(TDigest other)abstract voidTDigest. add(TDigest other)Add all of the centroids of another TDigest to this one.Method parameters in com.tdunning.math.stats with type arguments of type TDigest Modifier and Type Method Description voidAVLTreeDigest. add(List<? extends TDigest> others)voidMergingDigest. add(List<? extends TDigest> others)abstract voidTDigest. add(List<? extends TDigest> others) -
Uses of TDigest in org.elasticsearch.search.aggregations.metrics
Subclasses of TDigest in org.elasticsearch.search.aggregations.metrics Modifier and Type Class Description classTDigestStateExtension ofTDigestwith custom serialization.
-