topKWeighted
topKWeighted
Introduced in: v1.1
Returns an array of the approximately most frequent values in the specified column. The resulting array is sorted in descending order of approximate frequency of values (not by the values themselves). Additionally, the weight of the value is taken into account.
See Also
Syntax
Parameters
N— The number of elements to return. Default value: 10.UInt64load_factor— Optional. Defines, how many cells reserved for values. Ifuniq(column) > N * load_factor, result of topK function will be approximate. Default value: 3.UInt64counts— Optional. Defines whether the result should contain an approximate count and error value.Bool
Arguments
column— The name of the column for which to find the most frequent values. -weight— The weight. Every value is accountedweighttimes for frequency calculation.UInt64
Returned value
Returns an array of the values with maximum approximate sum of weights. Array
Examples
Usage example
With counts parameter
See Also