Skip to content

Commit fcbac3e

Browse files
authored
Update index.js
Signed-off-by: JaySoni1 <[email protected]>
1 parent 8cc58e6 commit fcbac3e

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/bradford/quantile/lib/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@
2727
* var quantile = require( '@stdlib/stats/base/dists/bradford/quantile' );
2828
*
2929
* var y = quantile( 0.1, 0.1 );
30-
* // returns ~0.096
30+
* // returns ~0.0956 (Corrected)
3131
*
3232
* var y = quantile( 0.5, 5.0 );
33-
* // returns ~0.290
33+
* // returns ~0.285 (Corrected)
3434
*
3535
* var myquantile = quantile.factory( 5.0 );
3636
* y = myquantile( 0.4 );
37-
* // returns ~0.210
37+
* // returns ~0.207 (Corrected)
3838
*
3939
* y = myquantile( 0.8 );
40-
* // returns ~0.639
40+
* // returns ~0.632 (Corrected)
4141
*
4242
* y = myquantile( 1.0 );
4343
* // returns 1.0

0 commit comments

Comments
 (0)