Jonathan Meyer
07/19/2021, 5:00 PMXiang Fu
Xiang Fu
PERCENTILE(column, N)
Returns the Nth percentile of the group where N is a decimal number between 0 and 100 inclusive
PERCENTILE(playerScore, 50), PERCENTILE(playerScore, 99.9)
PERCENTILEEST(column, N)
Returns the Nth percentile of the group using Quantile Digest algorithm
PERCENTILEEST(playerScore, 50), PERCENTILEEST(playerScore, 99.9)
PercentileTDigest(column, N)
Returns the Nth percentile of the group using T-digest algorithm
PERCENTILETDIGEST(playerScore, 50), PERCENTILETDIGEST(playerScore, 99.9)
Jonathan Meyer
07/19/2021, 5:22 PMpercentile("select avg(value), entity where ... group by entity", 0.1)
Not sure that makes sense ?Xiang Fu
Jonathan Meyer
07/19/2021, 5:42 PMMayank
Jackie
07/19/2021, 6:12 PMJonathan Meyer
07/19/2021, 6:12 PM