Skip to content

Commit e678757

Browse files
committed
docs: fix return annotation 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 e4701e8 commit e678757

File tree

27 files changed

+37
-37
lines changed

27 files changed

+37
-37
lines changed

lib/node_modules/@stdlib/stats/base/dists/beta/mgf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* var mgf = factory( 0.5, 0.5 );
4545
*
4646
* var y = mgf( 0.8 );
47-
* // returns ~1.522
47+
* // returns ~1.552
4848
*
4949
* y = mgf( 0.3 );
5050
* // returns ~1.168

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* // returns ~0.713
4242
*
4343
* y = quantile( 0.4 );
44-
* // returns ~0.5
44+
* // returns ~0.433
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/stats/base/dists/beta/skewness/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
* // returns ~0.529
3434
*
3535
* v = skewness( 8.0, 2.0 );
36-
* // returns ~0.829
36+
* // returns ~-0.829
3737
*/
3838

3939
// MODULES //

lib/node_modules/@stdlib/stats/base/dists/betaprime/logcdf/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
* var logcdf = factory( 0.5, 0.5 );
3939
*
4040
* var y = logcdf( 0.8 );
41-
* // returns ~-0.766
41+
* // returns ~-0.767
4242
*
4343
* y = logcdf( 0.3 );
44-
* // returns ~-1.142
44+
* // returns ~-1.143
4545
*/
4646

4747
// MODULES //

lib/node_modules/@stdlib/stats/base/dists/betaprime/logpdf/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
* var logpdf = factory( 0.5, 0.5 );
3939
*
4040
* var y = logpdf( 0.8 );
41-
* // returns ~-0.228
41+
* // returns ~-1.621
4242
*
4343
* y = logpdf( 0.3 );
44-
* // returns ~-0.364
44+
* // returns ~-0.805
4545
*/
4646

4747
// MODULES //

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* var quantile = factory( 2.0, 2.0 );
3939
*
4040
* var y = quantile( 0.8 );
41-
* // returns ~2.482
41+
* // returns ~2.483
4242
*
4343
* y = quantile( 0.4 );
4444
* // returns ~0.763

lib/node_modules/@stdlib/stats/base/dists/binomial/cdf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* // returns ~0.834
3737
*
3838
* y = cdf( 0.0, 10, 0.4 );
39-
* // returns ~0.06
39+
* // returns ~0.006
4040
*
4141
* @example
4242
* var factory = require( '@stdlib/stats/base/dists/binomial/cdf' ).factory;

lib/node_modules/@stdlib/stats/base/dists/binomial/entropy/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
* var entropy = require( '@stdlib/stats/base/dists/binomial/entropy' );
2828
*
2929
* var v = entropy( 100, 0.1 );
30-
* // returns ~0.051
30+
* // returns ~2.511
3131
*
3232
* v = entropy( 20, 0.5 );
33-
* // returns ~-0.1
33+
* // returns ~2.223
3434
*/
3535

3636
// MODULES //

lib/node_modules/@stdlib/stats/base/dists/binomial/logpmf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
* var logpmf = factory( 10, 0.5 );
4545
*
4646
* var y = logpmf( 3.0 );
47-
* // returns ~-2.146
47+
* // returns ~-2.144
4848
*
4949
* y = logpmf( 5.0 );
5050
* // returns ~-1.402

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* var quantile = require( '@stdlib/stats/base/dists/binomial/quantile' );
2828
*
2929
* var y = quantile( 0.4, 20, 0.2 );
30-
* // returns 2
30+
* // returns 3
3131
*
3232
* y = quantile( 0.8, 20, 0.2 );
3333
* // returns 5

0 commit comments

Comments
 (0)