Class InternalMatrixStats
- java.lang.Object
-
- org.elasticsearch.search.aggregations.InternalAggregation
-
- org.elasticsearch.search.aggregations.matrix.stats.InternalMatrixStats
-
- All Implemented Interfaces:
NamedWriteable,Writeable,ToXContent,ToXContentFragment,Aggregation,MatrixStats
public class InternalMatrixStats extends InternalAggregation implements MatrixStats
Computes distribution statistics over multiple fields
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.search.aggregations.InternalAggregation
InternalAggregation.ReduceContext
-
Nested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation
Aggregation.CommonFields
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V extends java.lang.Object>, Writeable.Writer<V extends java.lang.Object>
-
-
Field Summary
-
Fields inherited from class org.elasticsearch.search.aggregations.InternalAggregation
metaData, name
-
Fields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITER
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description InternalMatrixStats(StreamInput in)Read from a stream.
-
Method Summary
Modifier and Type Method Description InternalAggregationdoReduce(java.util.List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)protected voiddoWriteTo(StreamOutput out)XContentBuilderdoXContentBody(XContentBuilder builder, ToXContent.Params params)booleanequals(java.lang.Object obj)doublegetCorrelation(java.lang.String fieldX, java.lang.String fieldY)get the correlation between the two fieldsdoublegetCovariance(java.lang.String fieldX, java.lang.String fieldY)get the covariance between the two fieldslonggetDocCount()get the number of documentslonggetFieldCount(java.lang.String field)get the number of samples for the given field.doublegetKurtosis(java.lang.String field)get the distribution shape for the given fielddoublegetMean(java.lang.String field)get the mean for the given fieldjava.lang.ObjectgetProperty(java.util.List<java.lang.String> path)doublegetSkewness(java.lang.String field)get the distribution skewness for the given fielddoublegetVariance(java.lang.String field)get the variance for the given fieldjava.lang.StringgetWriteableName()inthashCode()-
Methods inherited from class org.elasticsearch.search.aggregations.InternalAggregation
getMetaData, getName, getProperty, getType, isMapped, pipelineAggregators, readSize, reduce, toString, toXContent, writeSize, writeTo
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.search.aggregations.Aggregation
getMetaData, getName, getType
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContent
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Constructor Detail
-
InternalMatrixStats
public InternalMatrixStats(StreamInput in) throws java.io.IOException
Read from a stream.- Throws:
java.io.IOException
-
-
Method Detail
-
doWriteTo
protected void doWriteTo(StreamOutput out) throws java.io.IOException
- Specified by:
doWriteToin classInternalAggregation- Throws:
java.io.IOException
-
getWriteableName
public java.lang.String getWriteableName()
- Specified by:
getWriteableNamein interfaceNamedWriteable
-
getDocCount
public long getDocCount()
get the number of documents- Specified by:
getDocCountin interfaceMatrixStats
-
getFieldCount
public long getFieldCount(java.lang.String field)
get the number of samples for the given field. == docCount - numMissing- Specified by:
getFieldCountin interfaceMatrixStats
-
getMean
public double getMean(java.lang.String field)
get the mean for the given field- Specified by:
getMeanin interfaceMatrixStats
-
getVariance
public double getVariance(java.lang.String field)
get the variance for the given field- Specified by:
getVariancein interfaceMatrixStats
-
getSkewness
public double getSkewness(java.lang.String field)
get the distribution skewness for the given field- Specified by:
getSkewnessin interfaceMatrixStats
-
getKurtosis
public double getKurtosis(java.lang.String field)
get the distribution shape for the given field- Specified by:
getKurtosisin interfaceMatrixStats
-
getCovariance
public double getCovariance(java.lang.String fieldX, java.lang.String fieldY)get the covariance between the two fields- Specified by:
getCovariancein interfaceMatrixStats
-
getCorrelation
public double getCorrelation(java.lang.String fieldX, java.lang.String fieldY)get the correlation between the two fields- Specified by:
getCorrelationin interfaceMatrixStats
-
doXContentBody
public XContentBuilder doXContentBody(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
doXContentBodyin classInternalAggregation- Throws:
java.io.IOException
-
getProperty
public java.lang.Object getProperty(java.util.List<java.lang.String> path)
- Specified by:
getPropertyin classInternalAggregation
-
doReduce
public InternalAggregation doReduce(java.util.List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)
- Specified by:
doReducein classInternalAggregation
-
hashCode
public int hashCode()
- Overrides:
hashCodein classInternalAggregation
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classInternalAggregation
-
-