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

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

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

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

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

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

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

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

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