You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/quantiles/index.rst
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,17 +10,21 @@ in the stream.
10
10
These sketches may be used to compute approximate histograms, Probability Mass Functions (PMFs), or
11
11
Cumulative Distribution Functions (CDFs).
12
12
13
-
The library provides three types of quantiles sketches, each of which has generic items as well as versions
14
-
specific to a given numeric type (e.g. integer or floating point values). All three types provide error
15
-
bounds on rank estimation with proven probabilistic error distributions.
13
+
The library provides four types of quantiles sketches, three of which have generic items as well as versions
14
+
specific to a given numeric type (e.g. integer or floating point values). Those three types provide error
15
+
bounds on rank estimation with proven probabilistic error distributions. t-digest is a heuristic-based sketch
16
+
that works only on numeric data, and while the error properties are not guaranteed, the sketch typically
17
+
does a good job with small storage.
16
18
17
-
* KLL: Provides uniform rank estimation error over the entire range
19
+
* KLL: Provides uniform rank estimation error over the entire range.
18
20
* REQ: Provides relative rank error estimates, which decreases approaching either the high or low end values.
21
+
* t-digest: Relative rank error estimates, heuristic-based without guarantees but quite compact with generally very good error properties.
19
22
* Classic quantiles: Largely deprecated in favor of KLL, also provides uniform rank estimation error. Included largely for backwards compatibility with historic data.
0 commit comments