--- id: stats title: "Stats aggregator" --- This Apache Druid extension includes stat-related aggregators, including variance and standard deviations, etc. Make sure to [include](../../configuration/extensions.md#loading-extensions) `druid-stats` in the extensions load list. ## Variance aggregator Algorithm of the aggregator is the same with that of apache hive. This is the description in GenericUDAFVariance in hive. Evaluate the variance using the algorithm described by Chan, Golub, and LeVeque in "Algorithms for computing the sample variance: analysis and recommendations" The American Statistician, 37 (1983) pp. 242--247. variance = variance1 + variance2 + n/(m*(m+n)) * pow(((m/n)*t1 - t2),2) where: - variance is sum(x-avg^2) (this is actually n times the variance) and is updated at every step. - n is the count of elements in chunk1 - m is the count of elements in chunk2 - t1 is the sum of elements in chunk1 - t2 is the sum of elements in chunk2 This algorithm was proven to be numerically stable by J.L. Barlow in "Error analysis of a pairwise summation algorithm to compute sample variance" Numer. Math, 58 (1991) pp. 583--590 :::info As with all [aggregators](../../querying/sql-aggregations.md), the order of operations across segments is non-deterministic. This means that if this aggregator operates with an input type of "float" or "double", the result of the aggregation may not be precisely the same across multiple runs of the query. To produce consistent results, round the variance to a fixed number of decimal places so that the results are precisely the same across query runs. ::: ### Variance and Standard Deviation SQL Aggregators You can use the variance and standard deviation aggregation functions in the SELECT clause of any Druid SQL query. |Function|Notes|Default| |--------|-----|-------| |`VAR_POP(expr)`|Computes variance population of `expr`.|`null` or `0` if `druid.generic.useDefaultValueForNull=true` (deprecated legacy mode)| |`VAR_SAMP(expr)`|Computes variance sample of `expr`.|`null` or `0` if `druid.generic.useDefaultValueForNull=true` (deprecated legacy mode)| |`VARIANCE(expr)`|Computes variance sample of `expr`.|`null` or `0` if `druid.generic.useDefaultValueForNull=true` (deprecated legacy mode)| |`STDDEV_POP(expr)`|Computes standard deviation population of `expr`.|`null` or `0` if `druid.generic.useDefaultValueForNull=true` (deprecated legacy mode)| |`STDDEV_SAMP(expr)`|Computes standard deviation sample of `expr`.|`null` or `0` if `druid.generic.useDefaultValueForNull=true` (deprecated legacy mode)| |`STDDEV(expr)`|Computes standard deviation sample of `expr`.|`null` or `0` if `druid.generic.useDefaultValueForNull=true` (deprecated legacy mode)| ### Pre-aggregating variance at ingestion time To use this feature, an "variance" aggregator must be included at indexing time. The ingestion aggregator can only apply to numeric values. If you use "variance" then any input rows missing the value will be considered to have a value of 0. User can specify expected input type as one of "float", "double", "long", "variance" for ingestion, which is by default "float". ```json { "type" : "variance", "name" : , "fieldName" : , "inputType" : , "estimator" : } ``` To query for results, "variance" aggregator with "variance" input type or simply a "varianceFold" aggregator must be included in the query. ```json { "type" : "varianceFold", "name" : , "fieldName" : , "estimator" : } ``` |Property |Description |Default | |-------------------------|------------------------------|----------------------------------| |`estimator`|Set "population" to get variance_pop rather than variance_sample, which is default.|null| ### Standard deviation post-aggregator To acquire standard deviation from variance, user can use "stddev" post aggregator. ```json { "type": "stddev", "name": "", "fieldName": "", "estimator": } ``` ## Query examples: ### Timeseries query #### Druid SQL ```SQL SELECT DATE_TRUNC('day', __time), VARIANCE("index_var") AS index_var FROM "testing" WHERE TIME_IN_INTERVAL(__time, '2013-03-01/2016-03-20') GROUP BY 1 ``` #### Native Query ```json { "queryType": "timeseries", "dataSource": "testing", "granularity": "day", "aggregations": [ { "type": "variance", "name": "index_var", "fieldName": "index_var" } ], "intervals": [ "2016-03-01/2013-03-20" ] } ``` ### TopN query #### Druid SQL ```SQL SELECT alias, VARIANCE("index") AS index_var FROM "testing" WHERE TIME_IN_INTERVAL(__time, '2016-03-06/2016-03-07') GROUP BY 1 ORDER BY 2 LIMIT 5 ``` #### Native Query ```json { "queryType": "topN", "dataSource": "testing", "dimensions": ["alias"], "threshold": 5, "granularity": "all", "aggregations": [ { "type": "variance", "name": "index_var", "fieldName": "index" } ], "postAggregations": [ { "type": "stddev", "name": "index_stddev", "fieldName": "index_var" } ], "intervals": [ "2016-03-06/2016-03-07" ] } ``` ### GroupBy query #### Druid SQL ```SQL SELECT alias, VARIANCE("index") AS index_var FROM "testing" WHERE TIME_IN_INTERVAL(__time, '2016-03-06/2016-03-07') GROUP BY alias ``` #### Native Query ```json { "queryType": "groupBy", "dataSource": "testing", "dimensions": ["alias"], "granularity": "all", "aggregations": [ { "type": "variance", "name": "index_var", "fieldName": "index" } ], "postAggregations": [ { "type": "stddev", "name": "index_stddev", "fieldName": "index_var" } ], "intervals": [ "2016-03-06/2016-03-07" ] } ```