Uses of Class
org.djutils.stats.summarizers.Tally
Package
Description
Event listening and event producing data summarizers.
Quantile Accumulators store some subset of input values and provide quantile values.
-
Uses of Tally in org.djutils.stats.summarizers.event
Modifier and TypeClassDescriptionclass
The EventBasedTally class registers a series of values and provides mean, standard deviation, etc. of the registered values. -
Uses of Tally in org.djutils.stats.summarizers.quantileaccumulator
Modifier and TypeMethodDescriptiondouble
FixedBinsAccumulator.getCumulativeProbability
(Tally tally, double quantile) double
FullStorageAccumulator.getCumulativeProbability
(Tally tally, double quantile) double
NoStorageAccumulator.getCumulativeProbability
(Tally tally, double quantile) double
QuantileAccumulator.getCumulativeProbability
(Tally tally, double quantile) Get, or estimate fraction of registered values between -infinity up to and including a given quantile.double
TDigestAccumulator.getCumulativeProbability
(Tally tally, double quantile) double
FixedBinsAccumulator.getQuantile
(Tally tally, double probability) double
FullStorageAccumulator.getQuantile
(Tally tally, double probability) double
NoStorageAccumulator.getQuantile
(Tally tally, double probability) double
QuantileAccumulator.getQuantile
(Tally tally, double probability) Compute (or approximate) the value that corresponds to the given fraction (percentile).double
TDigestAccumulator.getQuantile
(Tally tally, double probability)