Uses of Class
org.djutils.stats.summarizers.Tally

Packages that use 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 Type
    Class
    Description
    class 
    The EventBasedTally class registers a series of values and provides mean, standard deviation, etc.
  • Uses of Tally in org.djutils.stats.summarizers.quantileaccumulator

    Methods in org.djutils.stats.summarizers.quantileaccumulator with parameters of type Tally
    Modifier and Type
    Method
    Description
    double
    FixedBinsAccumulator.getCumulativeProbability(Tally tally, double quantile)
    Get, or estimate fraction of registered values between -infinity up to and including a given quantile.
    double
    FullStorageAccumulator.getCumulativeProbability(Tally tally, double quantile)
    Get, or estimate fraction of registered values between -infinity up to and including a given quantile.
    double
    NoStorageAccumulator.getCumulativeProbability(Tally tally, double quantile)
    Get, or estimate fraction of registered values between -infinity up to and including a given 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)
    Get, or estimate fraction of registered values between -infinity up to and including a given quantile.
    double
    FixedBinsAccumulator.getQuantile(Tally tally, double probability)
    Compute (or approximate) the value that corresponds to the given fraction (percentile).
    double
    FullStorageAccumulator.getQuantile(Tally tally, double probability)
    Compute (or approximate) the value that corresponds to the given fraction (percentile).
    double
    NoStorageAccumulator.getQuantile(Tally tally, double probability)
    Compute (or approximate) the value that corresponds to the given fraction (percentile).
    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)
    Compute (or approximate) the value that corresponds to the given fraction (percentile).