Interface ExtendedStats

All Superinterfaces:
Aggregation, NumericMetricsAggregation, NumericMetricsAggregation.MultiValue, Stats, org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentFragment
All Known Subinterfaces:
ExtendedStatsBucket
All Known Implementing Classes:
InternalExtendedStats, InternalExtendedStatsBucket, ParsedExtendedStats, ParsedExtendedStatsBucket

public interface ExtendedStats extends Stats
Statistics over a set of values (either aggregated over field data or scripts)
  • Method Details

    • getSumOfSquares

      double getSumOfSquares()
      The sum of the squares of the collected values.
    • getVariance

      double getVariance()
      The population variance of the collected values.
    • getVariancePopulation

      double getVariancePopulation()
      The population variance of the collected values.
    • getVarianceSampling

      double getVarianceSampling()
      The sampling variance of the collected values.
    • getStdDeviation

      double getStdDeviation()
      The population standard deviation of the collected values.
    • getStdDeviationPopulation

      double getStdDeviationPopulation()
      The population standard deviation of the collected values.
    • getStdDeviationSampling

      double getStdDeviationSampling()
      The sampling standard deviation of the collected values.
    • getStdDeviationBound

      double getStdDeviationBound(ExtendedStats.Bounds bound)
      The upper or lower bounds of the stdDeviation
    • getStdDeviationAsString

      String getStdDeviationAsString()
      The population standard deviation of the collected values as a String.
    • getStdDeviationPopulationAsString

      String getStdDeviationPopulationAsString()
      The population standard deviation of the collected values as a String.
    • getStdDeviationSamplingAsString

      String getStdDeviationSamplingAsString()
      The sampling standard deviation of the collected values as a String.
    • getStdDeviationBoundAsString

      String getStdDeviationBoundAsString(ExtendedStats.Bounds bound)
      The upper or lower bounds of stdDev of the collected values as a String.
    • getSumOfSquaresAsString

      String getSumOfSquaresAsString()
      The sum of the squares of the collected values as a String.
    • getVarianceAsString

      String getVarianceAsString()
      The population variance of the collected values as a String.
    • getVariancePopulationAsString

      String getVariancePopulationAsString()
      The population variance of the collected values as a String.
    • getVarianceSamplingAsString

      String getVarianceSamplingAsString()
      The sampling variance of the collected values as a String.