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/manual.adoc
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -869,10 +869,10 @@ The width of each bucket is provided by the width method.
869
869
The Quantile class provides a means of obtaining the p-quantile of a distribution of values, i.e., the value below which p-percent of the distribution lies.
870
870
871
871
----
872
-
public class Quantile extends PrecisionHistogram
872
+
public class Quantile extends PrecisionHistogram
873
873
{
874
-
public Quantile ();
875
-
public Quantile (double q) throws IllegalArgumentException;
874
+
public Quantile ();
875
+
public Quantile (double q) throws IllegalArgumentException;
876
876
877
877
public double getValue ();
878
878
public double range ();
@@ -884,3 +884,5 @@ public class Quantile extends PrecisionHistogram
884
884
The p-quantile probability range must be specified when the object is instantiated, and can be obtained via the range method.
885
885
886
886
The actual quantile value is provided by getValue method.
0 commit comments