hll_if() (aggregation function)

Learn how to use the hll_if() function to calculate the intermediate results of the dcount() function.

Calculates the intermediate results of dcount in records for which the predicate evaluates to true.

Read about the underlying algorithm (HyperLogLog) and the estimation accuracy.

Syntax

hll_if (expr, predicate [, accuracy])

Parameters

NameTypeRequiredDescription
exprstring✔️The expression used for the aggregation calculation.
predicatestring✔️The Expr used to filter records to add to the intermediate result of dcount.
accuracyintThe value that controls the balance between speed and accuracy. If unspecified, the default value is 1. For supported values, see Estimation accuracy.

Returns

Returns the intermediate results of distinct count of Expr for which Predicate evaluates to true.

Examples

The following query results in the number of unique flood event sources in Iowa and Kansas. It uses the hll_if() function to show only flood events.

StormEvents
| where State in ("IOWA", "KANSAS")
| summarize hll_flood = hll_if(Source, EventType == "Flood") by State
| project State, SourcesOfFloodEvents = dcount_hll(hll_flood)

Output

StateSourcesOfFloodEvents
KANSAS11
IOWA7

Estimation accuracy

AccuracySpeedError (%)
0Fastest1.6
1Balanced0.8
2Slow0.4
3Slow0.28
4Slowest0.2