Skip to content

Mode Aggregation

Edit page

A single-value metrics aggregation that computes the mode of numeric values that are extracted from the aggregated documents.

The mode of a set of data values is the value that appears most often, in other words, it is the value that is most likely to be sampled. 1

TypeDescriptionExampleResult
Mean (or !verage)Sum of values of a data set divided by number of values(1+2+2+3+4+7+9) / 74
MedianMiddle value separating the greater and lesser halves of a data set1, 2, 2, 3, 4, 7, 93
ModeMost frequent value in a data set1, 2, 2, 3, 4, 7, 92
SEARCH /bank/
{
"_query": "*",
"_limit": 0,
"_check_at_least": 1000,
"_aggs": {
"balance_mode": {
"_mode": {
"_field": "balance"
}
}
}
}

1 Mode (statistics)