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

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-website.git


The following commit(s) were added to refs/heads/master by this push:
     new 55c535f9 update DOAP and a tutorial.
55c535f9 is described below

commit 55c535f98e86e5a114621e0750f2b727405adfe5
Author: Lee Rhodes <[email protected]>
AuthorDate: Mon Dec 22 12:29:31 2025 -0800

    update DOAP and a tutorial.
---
 datasketches-doap.rdf                                   | 4 +++-
 docs/QuantilesAll/SketchingQuantilesAndRanksTutorial.md | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/datasketches-doap.rdf b/datasketches-doap.rdf
index ff02e8f4..d7a9c373 100644
--- a/datasketches-doap.rdf
+++ b/datasketches-doap.rdf
@@ -35,12 +35,14 @@ If approximate results are acceptable, there is a class of 
specialized algorithm
     <bug-database 
rdf:resource="https://github.com/apache/datasketches-cpp/issues"; />
     <bug-database 
rdf:resource="https://github.com/apache/datasketches-python/issues"; />
     <bug-database 
rdf:resource="https://github.com/apache/datasketches-go/issues"; />
+    <bug-database 
rdf:resource="https://github.com/apache/datasketches-rust/issues"; />
     <mailing-list 
rdf:resource="https://lists.apache.org/[email protected]"; 
/>
     <download-page 
rdf:resource="https//datasketches.apache.org/docs/Community/Downloads.html" />
     <programming-language>Java</programming-language>
     <programming-language>C++</programming-language>
     <programming-language>Python</programming-language>
     <programming-language>Go</programming-language>
+    <programming-language>Rust</programming-language>
     <category rdf:resource="https://projects.apache.org/category/library"; />
     <category rdf:resource="https://projects.apache.org/category/big-data"; />
     <repository>
@@ -55,7 +57,7 @@ If approximate results are acceptable, there is a class of 
specialized algorithm
     </repository>
     <maintainer>
       <foaf:Person>
-        <foaf:name>Lee Rhodes</foaf:name>
+        <foaf:name>Lee Rhodes (leerho)</foaf:name>
           <foaf:mbox rdf:resource="mailto:[email protected]"/>
       </foaf:Person>
     </maintainer>
diff --git a/docs/QuantilesAll/SketchingQuantilesAndRanksTutorial.md 
b/docs/QuantilesAll/SketchingQuantilesAndRanksTutorial.md
index ccad2826..7a1c0cf8 100644
--- a/docs/QuantilesAll/SketchingQuantilesAndRanksTutorial.md
+++ b/docs/QuantilesAll/SketchingQuantilesAndRanksTutorial.md
@@ -136,7 +136,7 @@ How do we resolve *Q(3)* or *R(20)*?
 ## The need for inequality search
 The quantile sketch algorithms discussed in the literature primarily differ by 
how they choose which quantiles in the stream should be discarded. After the 
elimination process, all of the quantiles sketch implementations are left with 
the challenge of how to reconstruct the actual distribution of the stream, 
approximately and with good accuracy. 
 
-Given the presence of duplicates and absence of values from the stream we must 
redefine the above quantile and rank functions as inequalities while retaining 
the properties of 1:1 functions as closely as possible.**
+Given the presence of duplicates and absence of values from the stream we must 
redefine the above quantile and rank functions as inequalities while retaining 
the properties of 1:1 functions as closely as possible.
 
 One can find examples of the following definitions in the research literature. 
 All of our library quantile sketches allow the user to choose the searching 
criteria.  
 


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

Reply via email to