percentiletdigest

This section contains reference documentation for the PERCENTILETDigest function.

Returns the Nth percentile of the group using T-digest algorithm.

Signature

PERCENTILETDigest(colName, percentile)

Usage Examples

These examples are based on the Batch Quick Start.

select PERCENTILETDigest(homeRuns, 50) AS value
from baseballStats 
select PERCENTILETDigest(homeRuns, 80) AS value
from baseballStats 
select PERCENTILETDigest(homeRuns, 99.9) AS value
from baseballStats 

Last updated