Skip to content

Commit 49e6a7c

Browse files
committed
Added section on example in stats.
Also removed to whitespace.
1 parent 85c79d2 commit 49e6a7c

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

docs/manual.adoc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -869,10 +869,10 @@ The width of each bucket is provided by the width method.
869869
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.
870870

871871
----
872-
public class Quantile extends PrecisionHistogram
872+
public class Quantile extends PrecisionHistogram
873873
{
874-
public Quantile ();
875-
public Quantile (double q) throws IllegalArgumentException;
874+
public Quantile ();
875+
public Quantile (double q) throws IllegalArgumentException;
876876
877877
public double getValue ();
878878
public double range ();
@@ -884,3 +884,5 @@ public class Quantile extends PrecisionHistogram
884884
The p-quantile probability range must be specified when the object is instantiated, and can be obtained via the range method.
885885

886886
The actual quantile value is provided by getValue method.
887+
888+
=== Example

0 commit comments

Comments
 (0)