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
Statistics over a set of values (either aggregated over field data or scripts)
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation
Aggregation.CommonFields
Nested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.metrics.NumericMetricsAggregation
NumericMetricsAggregation.MultiValue, NumericMetricsAggregation.SingleValue
Nested 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_DELIMITER
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Method Summary
Modifier and TypeMethodDescriptiondouble
The population standard deviation of the collected values.The population standard deviation of the collected values as a String.double
The upper or lower bounds of the stdDeviationThe upper or lower bounds of stdDev of the collected values as a String.double
The population standard deviation of the collected values.The population standard deviation of the collected values as a String.double
The sampling standard deviation of the collected values.The sampling standard deviation of the collected values as a String.double
The sum of the squares of the collected values.The sum of the squares of the collected values as a String.double
The population variance of the collected values.The population variance of the collected values as a String.double
The population variance of the collected values.The population variance of the collected values as a String.double
The sampling variance of the collected values.The sampling variance of the collected values as a String.Methods inherited from interface org.elasticsearch.search.aggregations.Aggregation
getMetadata, getName, getType
Methods inherited from interface org.elasticsearch.search.aggregations.metrics.NumericMetricsAggregation.MultiValue
value, valueNames
Methods inherited from interface org.elasticsearch.search.aggregations.metrics.Stats
getAvg, getAvgAsString, getCount, getMax, getMaxAsString, getMin, getMinAsString, getSum, getSumAsString
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContent
Methods 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
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
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.
-