This is an automated email from the ASF dual-hosted git repository.

alsay pushed a commit to branch tdigest_url
in repository https://gitbox.apache.org/repos/asf/datasketches-bigquery.git

commit b765ab61f6e40085dc0b05bc80430f7737aa26a3
Author: AlexanderSaydakov <[email protected]>
AuthorDate: Sat Nov 16 11:37:14 2024 -0800

    link to our website
---
 definitions/tdigest/tdigest_double_build.sqlx            | 2 +-
 definitions/tdigest/tdigest_double_build_k.sqlx          | 2 +-
 definitions/tdigest/tdigest_double_get_max_value.sqlx    | 2 +-
 definitions/tdigest/tdigest_double_get_min_value.sqlx    | 2 +-
 definitions/tdigest/tdigest_double_get_quantile.sqlx     | 2 +-
 definitions/tdigest/tdigest_double_get_rank.sqlx         | 2 +-
 definitions/tdigest/tdigest_double_get_total_weight.sqlx | 2 +-
 definitions/tdigest/tdigest_double_merge.sqlx            | 2 +-
 definitions/tdigest/tdigest_double_merge_k.sqlx          | 2 +-
 definitions/tdigest/tdigest_double_to_string.sqlx        | 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/definitions/tdigest/tdigest_double_build.sqlx 
b/definitions/tdigest/tdigest_double_build.sqlx
index 8710ed0..475fbe0 100644
--- a/definitions/tdigest/tdigest_double_build.sqlx
+++ b/definitions/tdigest/tdigest_double_build.sqlx
@@ -29,7 +29,7 @@ Defaults: k = 200.
 Returns: a t-Digest, as bytes.
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS (
   ${ref("tdigest_double_build_k")}(value, NULL)
diff --git a/definitions/tdigest/tdigest_double_build_k.sqlx 
b/definitions/tdigest/tdigest_double_build_k.sqlx
index f13f9fd..3e1f6d3 100644
--- a/definitions/tdigest/tdigest_double_build_k.sqlx
+++ b/definitions/tdigest/tdigest_double_build_k.sqlx
@@ -31,7 +31,7 @@ Param k: the sketch accuracy/size parameter as an INT in the 
range [10, 65535].
 Returns: a t-Digest, as bytes.
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS R"""
 import ModuleFactory from "${JS_BUCKET}/tdigest_double.mjs";
diff --git a/definitions/tdigest/tdigest_double_get_max_value.sqlx 
b/definitions/tdigest/tdigest_double_get_max_value.sqlx
index 328538d..8c7aa5a 100644
--- a/definitions/tdigest/tdigest_double_get_max_value.sqlx
+++ b/definitions/tdigest/tdigest_double_get_max_value.sqlx
@@ -31,7 +31,7 @@ Param sketch: the given sketch as BYTES.
 Returns: max value as FLOAT64
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS R"""
 try {
diff --git a/definitions/tdigest/tdigest_double_get_min_value.sqlx 
b/definitions/tdigest/tdigest_double_get_min_value.sqlx
index 98e6ce8..1d86c6c 100644
--- a/definitions/tdigest/tdigest_double_get_min_value.sqlx
+++ b/definitions/tdigest/tdigest_double_get_min_value.sqlx
@@ -31,7 +31,7 @@ Param sketch: the given sketch as BYTES.
 Returns: min value as FLOAT64
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS R"""
 try {
diff --git a/definitions/tdigest/tdigest_double_get_quantile.sqlx 
b/definitions/tdigest/tdigest_double_get_quantile.sqlx
index b5e15db..8863a49 100644
--- a/definitions/tdigest/tdigest_double_get_quantile.sqlx
+++ b/definitions/tdigest/tdigest_double_get_quantile.sqlx
@@ -32,7 +32,7 @@ Param rank: rank of a value in the hypothetical sorted stream.
 Returns: an approximate quantile associated with the given rank.
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS R"""
 try {
diff --git a/definitions/tdigest/tdigest_double_get_rank.sqlx 
b/definitions/tdigest/tdigest_double_get_rank.sqlx
index 25d5117..0b3ac7a 100644
--- a/definitions/tdigest/tdigest_double_get_rank.sqlx
+++ b/definitions/tdigest/tdigest_double_get_rank.sqlx
@@ -32,7 +32,7 @@ Param value: value to be ranked.
 Returns: an approximate rank of the given value.
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS R"""
 try {
diff --git a/definitions/tdigest/tdigest_double_get_total_weight.sqlx 
b/definitions/tdigest/tdigest_double_get_total_weight.sqlx
index 78162d8..54569a7 100644
--- a/definitions/tdigest/tdigest_double_get_total_weight.sqlx
+++ b/definitions/tdigest/tdigest_double_get_total_weight.sqlx
@@ -31,7 +31,7 @@ Param sketch: the given sketch as BYTES.
 Returns: total weight as INT64
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS R"""
 try {
diff --git a/definitions/tdigest/tdigest_double_merge.sqlx 
b/definitions/tdigest/tdigest_double_merge.sqlx
index 44ad4f6..987f2b0 100644
--- a/definitions/tdigest/tdigest_double_merge.sqlx
+++ b/definitions/tdigest/tdigest_double_merge.sqlx
@@ -29,7 +29,7 @@ Defaults: k = 200.
 Returns: a serialized t-Digest as BYTES.
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS (
   ${ref("tdigest_double_merge_k")}(sketch, NULL)
diff --git a/definitions/tdigest/tdigest_double_merge_k.sqlx 
b/definitions/tdigest/tdigest_double_merge_k.sqlx
index 47f72ad..5ba09fd 100644
--- a/definitions/tdigest/tdigest_double_merge_k.sqlx
+++ b/definitions/tdigest/tdigest_double_merge_k.sqlx
@@ -31,7 +31,7 @@ Param k: the sketch accuracy/size parameter as an integer in 
the range [10, 6553
 Returns: a serialized t-Digest as BYTES.
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS R"""
 import ModuleFactory from "${JS_BUCKET}/tdigest_double.mjs";
diff --git a/definitions/tdigest/tdigest_double_to_string.sqlx 
b/definitions/tdigest/tdigest_double_to_string.sqlx
index 8d8017a..7ca718f 100644
--- a/definitions/tdigest/tdigest_double_to_string.sqlx
+++ b/definitions/tdigest/tdigest_double_to_string.sqlx
@@ -31,7 +31,7 @@ Param sketch: the given sketch as sketch encoded bytes.
 Returns: a string that represents the state of the given sketch.
 
 For more information:
- - https://github.com/tdunning/t-digest
+ - https://datasketches.apache.org/docs/tdigest/tdigest.html
 '''
 ) AS R"""
 try {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to