A T-digest is a data sketch which stores approximate percentile
information. The Trino type for this data structure is called tdigest.
T-digests can be merged, and for storage and retrieval they can be cast
to and from VARBINARY.
values_at_quantiles(tdigest, quantiles) → array(double)Returns the approximate percentile values as an array, given the input T-digest and an array of values between 0 and 1, which represent the quantiles to return.
tdigest_agg(x) → tdigestComposes all input values of x into a tdigest. x can be of any numeric type.tdigest_agg(x, w) → tdigestComposes all input values of x into a tdigest using the per-item weight w. w must be greater or equal than 1. x and w can be of any numeric type.