Commands

TDIGEST.ADD

Adds one or more observations to a t-digest sketch

Learn more →
Read more

TDIGEST.BYRANK

Returns, for each input rank, an estimation of the value (floating-point) with that rank

Learn more →
Read more

TDIGEST.BYREVRANK

Returns, for each input reverse rank, an estimation of the value (floating-point) with that reverse rank

Learn more →
Read more

TDIGEST.CDF

Returns, for each input value, an estimation of the fraction (floating-point) of (observations smaller than the given value + half the observations equal to the given value)

Learn more →
Read more

TDIGEST.CREATE

Allocates memory and initializes a new t-digest sketch

Learn more →
Read more

TDIGEST.INFO

Returns information and statistics about a t-digest sketch

Learn more →
Read more

TDIGEST.MAX

Returns the maximum observation value from a t-digest sketch

Learn more →
Read more

TDIGEST.MERGE

Merges multiple t-digest sketches into a single sketch

Learn more →
Read more

TDIGEST.MIN

Returns the minimum observation value from a t-digest sketch

Learn more →
Read more

TDIGEST.QUANTILE

Returns, for each input fraction, an estimation of the value (floating point) that is smaller than the given fraction of observations

Learn more →
Read more

TDIGEST.RANK

Returns, for each input value (floating-point), the estimated rank of the value (the number of observations in the sketch that are smaller than the value + half the number of observations that are equal to the value)

Learn more →
Read more

TDIGEST.RESET

Resets a t-digest sketch: empty the sketch and re-initializes it.

Learn more →
Read more

TDIGEST.REVRANK

Returns, for each input value (floating-point), the estimated reverse rank of the value (the number of observations in the sketch that are larger than the value + half the number of observations that are equal to the value)

Learn more →
Read more

TDIGEST.TRIMMED_MEAN

Returns an estimation of the mean value from the sketch, excluding observation values outside the low and high cutoff quantiles

Learn more →
Read more