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)
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classExtendedStats.BoundsNested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation
Aggregation.CommonFieldsNested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.metrics.NumericMetricsAggregation
NumericMetricsAggregation.MultiValue, NumericMetricsAggregation.SingleValueNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params -
Field Summary
Fields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITERFields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS -
Method Summary
Modifier and Type Method Description doublegetStdDeviation()The population standard deviation of the collected values.java.lang.StringgetStdDeviationAsString()The population standard deviation of the collected values as a String.doublegetStdDeviationBound(ExtendedStats.Bounds bound)The upper or lower bounds of the stdDeviationjava.lang.StringgetStdDeviationBoundAsString(ExtendedStats.Bounds bound)The upper or lower bounds of stdDev of the collected values as a String.doublegetStdDeviationPopulation()The population standard deviation of the collected values.java.lang.StringgetStdDeviationPopulationAsString()The population standard deviation of the collected values as a String.doublegetStdDeviationSampling()The sampling standard deviation of the collected values.java.lang.StringgetStdDeviationSamplingAsString()The sampling standard deviation of the collected values as a String.doublegetSumOfSquares()The sum of the squares of the collected values.java.lang.StringgetSumOfSquaresAsString()The sum of the squares of the collected values as a String.doublegetVariance()The population variance of the collected values.java.lang.StringgetVarianceAsString()The population variance of the collected values as a String.doublegetVariancePopulation()The population variance of the collected values.java.lang.StringgetVariancePopulationAsString()The population variance of the collected values as a String.doublegetVarianceSampling()The sampling variance of the collected values.java.lang.StringgetVarianceSamplingAsString()The sampling variance of the collected values as a String.Methods inherited from interface org.elasticsearch.search.aggregations.Aggregation
getMetadata, getName, getTypeMethods inherited from interface org.elasticsearch.search.aggregations.metrics.NumericMetricsAggregation.MultiValue
value, valueNamesMethods inherited from interface org.elasticsearch.search.aggregations.metrics.Stats
getAvg, getAvgAsString, getCount, getMax, getMaxAsString, getMin, getMinAsString, getSum, getSumAsStringMethods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContentMethods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
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
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
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.
-