Skip to content

Commit 01c950d

Browse files
authored
tdigest docs (#527)
* tdigest docs * Update index.md * Update index.md * Update index.md * Update index.md * Update index.md
1 parent 3b8c8a3 commit 01c950d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

content/commands/tdigest.byrank/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515
- oss
1616
- kubernetes
1717
- clients
18-
complexity: O(1)
18+
complexity: O(N) where N is the number of ranks specified.
1919
description: Returns, for each input rank, an estimation of the value (floating-point)
2020
with that rank
2121
group: tdigest

content/commands/tdigest.byrevrank/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515
- oss
1616
- kubernetes
1717
- clients
18-
complexity: O(1)
18+
complexity: O(N) where N is the number of reverse ranks specified.
1919
description: Returns, for each input reverse rank, an estimation of the value (floating-point)
2020
with that reverse rank
2121
group: tdigest

content/commands/tdigest.cdf/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515
- oss
1616
- kubernetes
1717
- clients
18-
complexity: O(1)
18+
complexity: O(N) where N is the number of values specified.
1919
description: Returns, for each input value, an estimation of the fraction (floating-point)
2020
of (observations smaller than the given value + half the observations equal to the
2121
given value)
@@ -34,7 +34,7 @@ title: TDIGEST.CDF
3434
---
3535
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).
3636

37-
Multiple fractions can be retrieved in a signle call.
37+
Multiple fractions can be retrieved in a single call.
3838

3939
## Required arguments
4040

content/commands/tdigest.quantile/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515
- oss
1616
- kubernetes
1717
- clients
18-
complexity: O(1)
18+
complexity: O(N) where N is the number of quantiles specified.
1919
description: Returns, for each input fraction, an estimation of the value (floating
2020
point) that is smaller than the given fraction of observations
2121
group: tdigest
@@ -32,7 +32,7 @@ title: TDIGEST.QUANTILE
3232
---
3333
Returns, for each input fraction, an estimation of the value (floating point) that is smaller than the given fraction of observations.
3434

35-
Multiple quantiles can be retrieved in a signle call.
35+
Multiple quantiles can be retrieved in a single call.
3636

3737
## Required arguments
3838

content/commands/tdigest.rank/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515
- oss
1616
- kubernetes
1717
- clients
18-
complexity: O(1)
18+
complexity: O(N) where N is the number of values specified.
1919
description: Returns, for each input value (floating-point), the estimated rank of
2020
the value (the number of observations in the sketch that are smaller than the value
2121
+ half the number of observations that are equal to the value)
@@ -34,7 +34,7 @@ title: TDIGEST.RANK
3434
---
3535
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).
3636

37-
Multiple ranks can be retrieved in a signle call.
37+
Multiple ranks can be retrieved in a single call.
3838

3939
## Required arguments
4040
<details open><summary><code>key</code></summary>

content/commands/tdigest.revrank/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ categories:
1515
- oss
1616
- kubernetes
1717
- clients
18-
complexity: O(1)
18+
complexity: O(N) where N is the number of values specified.
1919
description: Returns, for each input value (floating-point), the estimated reverse
2020
rank of the value (the number of observations in the sketch that are larger than
2121
the value + half the number of observations that are equal to the value)
@@ -34,7 +34,7 @@ title: TDIGEST.REVRANK
3434
---
3535
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).
3636

37-
Multiple reverse ranks can be retrieved in a signle call.
37+
Multiple reverse ranks can be retrieved in a single call.
3838

3939
## Required arguments
4040
<details open><summary><code>key</code></summary>

0 commit comments

Comments
 (0)