Skip to content

Commit 65044c2

Browse files
committed
docs: correct example output values
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent c5a083f commit 65044c2

File tree

1 file changed

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

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@
2727
* var quantile = require( '@stdlib/stats/base/dists/bradford/quantile' );
2828
*
2929
* var y = quantile( 0.1, 0.1 );
30-
* // returns ~1.039
30+
* // returns ~0.096
3131
*
3232
* var y = quantile( 0.5, 5.0 );
33-
* // returns ~0.797
33+
* // returns ~0.290
3434
*
3535
* var myquantile = quantile.factory( 5.0 );
3636
* y = myquantile( 0.4 );
37-
* // returns 0
37+
* // returns ~0.210
3838
*
3939
* y = myquantile( 0.8 );
40-
* // returns 1
40+
* // returns ~0.639
4141
*
4242
* y = myquantile( 1.0 );
43-
* // returns 1
43+
* // returns 1.0
4444
*/
4545

4646
// MODULES //

0 commit comments

Comments
 (0)