Skip to content

Commit 199ca44

Browse files
Deploying to gh-pages from @ 33d8ad5 🚀
1 parent 7d87c2f commit 199ca44

File tree

9 files changed

+110
-39
lines changed

9 files changed

+110
-39
lines changed

docs/master/index-all.html

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1708,6 +1708,11 @@ <h2 class="title">G</h2>
17081708
<dd>
17091709
<div class="block">This is equivalent to <a href="org/apache/datasketches/quantilescommon/QuantilesDoublesAPI.html#getCDF(double%5B%5D,org.apache.datasketches.quantilescommon.QuantileSearchCriteria)"><code>getCDF(splitPoints, INCLUSIVE)</code></a></div>
17101710
</dd>
1711+
<dt><span class="memberNameLink"><a href="org/apache/datasketches/tdigest/TDigestDouble.html#getCDF(double%5B%5D)">getCDF(double[])</a></span> - Method in class org.apache.datasketches.tdigest.<a href="org/apache/datasketches/tdigest/TDigestDouble.html" title="class in org.apache.datasketches.tdigest">TDigestDouble</a></dt>
1712+
<dd>
1713+
<div class="block">Returns an approximation to the Cumulative Distribution Function (CDF), which is the
1714+
cumulative analog of the PMF, of the input stream given a set of split points.</div>
1715+
</dd>
17111716
<dt><span class="memberNameLink"><a href="org/apache/datasketches/kll/KllDoublesSketch.html#getCDF(double%5B%5D,org.apache.datasketches.quantilescommon.QuantileSearchCriteria)">getCDF(double[], QuantileSearchCriteria)</a></span> - Method in class org.apache.datasketches.kll.<a href="org/apache/datasketches/kll/KllDoublesSketch.html" title="class in org.apache.datasketches.kll">KllDoublesSketch</a></dt>
17121717
<dd>&nbsp;</dd>
17131718
<dt><span class="memberNameLink"><a href="org/apache/datasketches/quantiles/DoublesSketch.html#getCDF(double%5B%5D,org.apache.datasketches.quantilescommon.QuantileSearchCriteria)">getCDF(double[], QuantileSearchCriteria)</a></span> - Method in class org.apache.datasketches.quantiles.<a href="org/apache/datasketches/quantiles/DoublesSketch.html" title="class in org.apache.datasketches.quantiles">DoublesSketch</a></dt>
@@ -1830,7 +1835,7 @@ <h2 class="title">G</h2>
18301835
<dt><span class="memberNameLink"><a href="org/apache/datasketches/theta/Sketches.html#getCompactSketchMaxBytes(int)">getCompactSketchMaxBytes(int)</a></span> - Static method in class org.apache.datasketches.theta.<a href="org/apache/datasketches/theta/Sketches.html" title="class in org.apache.datasketches.theta">Sketches</a></dt>
18311836
<dd>
18321837
<div class="block">Returns the maximum number of storage bytes required for a CompactSketch given the configured
1833-
number of nominal entries (power of 2).</div>
1838+
log_base2 of the number of nominal entries, which is a power of 2.</div>
18341839
</dd>
18351840
<dt><span class="memberNameLink"><a href="org/apache/datasketches/kll/KllItemsSketch.html#getComparator()">getComparator()</a></span> - Method in class org.apache.datasketches.kll.<a href="org/apache/datasketches/kll/KllItemsSketch.html" title="class in org.apache.datasketches.kll">KllItemsSketch</a></dt>
18361841
<dd>&nbsp;</dd>
@@ -2857,6 +2862,11 @@ <h2 class="title">G</h2>
28572862
<dd>
28582863
<div class="block">This is equivalent to <a href="org/apache/datasketches/quantilescommon/QuantilesDoublesAPI.html#getPMF(double%5B%5D,org.apache.datasketches.quantilescommon.QuantileSearchCriteria)"><code>getPMF(splitPoints, INCLUSIVE)</code></a></div>
28592864
</dd>
2865+
<dt><span class="memberNameLink"><a href="org/apache/datasketches/tdigest/TDigestDouble.html#getPMF(double%5B%5D)">getPMF(double[])</a></span> - Method in class org.apache.datasketches.tdigest.<a href="org/apache/datasketches/tdigest/TDigestDouble.html" title="class in org.apache.datasketches.tdigest">TDigestDouble</a></dt>
2866+
<dd>
2867+
<div class="block">Returns an approximation to the Probability Mass Function (PMF) of the input stream
2868+
given a set of split points.</div>
2869+
</dd>
28602870
<dt><span class="memberNameLink"><a href="org/apache/datasketches/kll/KllDoublesSketch.html#getPMF(double%5B%5D,org.apache.datasketches.quantilescommon.QuantileSearchCriteria)">getPMF(double[], QuantileSearchCriteria)</a></span> - Method in class org.apache.datasketches.kll.<a href="org/apache/datasketches/kll/KllDoublesSketch.html" title="class in org.apache.datasketches.kll">KllDoublesSketch</a></dt>
28612871
<dd>&nbsp;</dd>
28622872
<dt><span class="memberNameLink"><a href="org/apache/datasketches/quantiles/DoublesSketch.html#getPMF(double%5B%5D,org.apache.datasketches.quantilescommon.QuantileSearchCriteria)">getPMF(double[], QuantileSearchCriteria)</a></span> - Method in class org.apache.datasketches.quantiles.<a href="org/apache/datasketches/quantiles/DoublesSketch.html" title="class in org.apache.datasketches.quantiles">DoublesSketch</a></dt>

docs/master/member-search-index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
4 Bytes
Binary file not shown.

docs/master/org/apache/datasketches/quantilescommon/QuantilesDoublesAPI.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ <h4>getCDF</h4>
376376
<dt><span class="returnLabel">Returns:</span></dt>
377377
<dd>a discrete CDF array of m+1 double ranks (or cumulative probabilities) on the interval [0.0, 1.0].</dd>
378378
<dt><span class="throwsLabel">Throws:</span></dt>
379-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
379+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
380380
</dl>
381381
</li>
382382
</ul>
@@ -420,7 +420,7 @@ <h4>getCDF</h4>
420420
<dt><span class="returnLabel">Returns:</span></dt>
421421
<dd>a discrete CDF array of m+1 double ranks (or cumulative probabilities) on the interval [0.0, 1.0].</dd>
422422
<dt><span class="throwsLabel">Throws:</span></dt>
423-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
423+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
424424
</dl>
425425
</li>
426426
</ul>
@@ -437,7 +437,7 @@ <h4>getMaxItem</h4>
437437
<dt><span class="returnLabel">Returns:</span></dt>
438438
<dd>the maximum item of the stream</dd>
439439
<dt><span class="throwsLabel">Throws:</span></dt>
440-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
440+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
441441
</dl>
442442
</li>
443443
</ul>
@@ -454,7 +454,7 @@ <h4>getMinItem</h4>
454454
<dt><span class="returnLabel">Returns:</span></dt>
455455
<dd>the minimum item of the stream</dd>
456456
<dt><span class="throwsLabel">Throws:</span></dt>
457-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
457+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
458458
</dl>
459459
</li>
460460
</ul>
@@ -472,7 +472,7 @@ <h4>getPMF</h4>
472472
<dt><span class="returnLabel">Returns:</span></dt>
473473
<dd>a PMF array of m+1 probability masses as doubles on the interval [0.0, 1.0].</dd>
474474
<dt><span class="throwsLabel">Throws:</span></dt>
475-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
475+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
476476
</dl>
477477
</li>
478478
</ul>
@@ -523,7 +523,7 @@ <h4>getPMF</h4>
523523
<dt><span class="returnLabel">Returns:</span></dt>
524524
<dd>a PMF array of m+1 probability masses as doubles on the interval [0.0, 1.0].</dd>
525525
<dt><span class="throwsLabel">Throws:</span></dt>
526-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
526+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
527527
</dl>
528528
</li>
529529
</ul>
@@ -541,7 +541,7 @@ <h4>getQuantile</h4>
541541
<dt><span class="returnLabel">Returns:</span></dt>
542542
<dd>the approximate quantile given the normalized rank.</dd>
543543
<dt><span class="throwsLabel">Throws:</span></dt>
544-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
544+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
545545
</dl>
546546
</li>
547547
</ul>
@@ -564,7 +564,7 @@ <h4>getQuantile</h4>
564564
<dt><span class="returnLabel">Returns:</span></dt>
565565
<dd>the approximate quantile given the normalized rank.</dd>
566566
<dt><span class="throwsLabel">Throws:</span></dt>
567-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
567+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
568568
<dt><span class="seeLabel">See Also:</span></dt>
569569
<dd><a href="QuantileSearchCriteria.html" title="enum in org.apache.datasketches.quantilescommon"><code>QuantileSearchCriteria</code></a></dd>
570570
</dl>
@@ -591,7 +591,7 @@ <h4>getQuantileLowerBound</h4>
591591
<dd>the lower bound of the quantile confidence interval in which the quantile of the
592592
given rank exists.</dd>
593593
<dt><span class="throwsLabel">Throws:</span></dt>
594-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
594+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
595595
</dl>
596596
</li>
597597
</ul>
@@ -616,7 +616,7 @@ <h4>getQuantileUpperBound</h4>
616616
<dd>the upper bound of the quantile confidence interval in which the true quantile of the
617617
given rank exists.</dd>
618618
<dt><span class="throwsLabel">Throws:</span></dt>
619-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
619+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
620620
</dl>
621621
</li>
622622
</ul>
@@ -635,7 +635,7 @@ <h4>getQuantiles</h4>
635635
<dt><span class="returnLabel">Returns:</span></dt>
636636
<dd>an array of quantiles corresponding to the given array of normalized ranks.</dd>
637637
<dt><span class="throwsLabel">Throws:</span></dt>
638-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
638+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
639639
</dl>
640640
</li>
641641
</ul>
@@ -657,7 +657,7 @@ <h4>getQuantiles</h4>
657657
<dt><span class="returnLabel">Returns:</span></dt>
658658
<dd>an array of quantiles corresponding to the given array of normalized ranks.</dd>
659659
<dt><span class="throwsLabel">Throws:</span></dt>
660-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
660+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
661661
<dt><span class="seeLabel">See Also:</span></dt>
662662
<dd><a href="QuantileSearchCriteria.html" title="enum in org.apache.datasketches.quantilescommon"><code>QuantileSearchCriteria</code></a></dd>
663663
</dl>
@@ -677,7 +677,7 @@ <h4>getRank</h4>
677677
<dt><span class="returnLabel">Returns:</span></dt>
678678
<dd>the normalized rank corresponding to the given quantile</dd>
679679
<dt><span class="throwsLabel">Throws:</span></dt>
680-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
680+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
681681
</dl>
682682
</li>
683683
</ul>
@@ -697,7 +697,7 @@ <h4>getRank</h4>
697697
<dt><span class="returnLabel">Returns:</span></dt>
698698
<dd>the normalized rank corresponding to the given quantile</dd>
699699
<dt><span class="throwsLabel">Throws:</span></dt>
700-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
700+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
701701
<dt><span class="seeLabel">See Also:</span></dt>
702702
<dd><a href="QuantileSearchCriteria.html" title="enum in org.apache.datasketches.quantilescommon"><code>QuantileSearchCriteria</code></a></dd>
703703
</dl>
@@ -717,7 +717,7 @@ <h4>getRanks</h4>
717717
<dt><span class="returnLabel">Returns:</span></dt>
718718
<dd>an array of normalized ranks corresponding to the given array of quantiles.</dd>
719719
<dt><span class="throwsLabel">Throws:</span></dt>
720-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
720+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
721721
</dl>
722722
</li>
723723
</ul>
@@ -738,7 +738,7 @@ <h4>getRanks</h4>
738738
<dt><span class="returnLabel">Returns:</span></dt>
739739
<dd>an array of normalized ranks corresponding to the given array of quantiles.</dd>
740740
<dt><span class="throwsLabel">Throws:</span></dt>
741-
<dd><code><a href="https://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true" title="class or interface in java.lang" class="externalLink">IllegalArgumentException</a></code> - if sketch is empty.</dd>
741+
<dd><code><a href="../common/SketchesArgumentException.html" title="class in org.apache.datasketches.common">SketchesArgumentException</a></code> - if sketch is empty.</dd>
742742
<dt><span class="seeLabel">See Also:</span></dt>
743743
<dd><a href="QuantileSearchCriteria.html" title="enum in org.apache.datasketches.quantilescommon"><code>QuantileSearchCriteria</code></a></dd>
744744
</dl>

0 commit comments

Comments
 (0)