Skip to content

Commit f75a0ce

Browse files
committed
chore: use excess kurtosis consistently
--- 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: passed - 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: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: passed - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent bd984ea commit f75a0ce

File tree

47 files changed

+128
-131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+128
-131
lines changed

lib/node_modules/@stdlib/stats/base/dists/bernoulli/kurtosis/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
2929
* Returns the excess kurtosis of a Bernoulli distribution.
3030
*
3131
* @param {Probability} p - success probability
32-
* @returns {PositiveNumber} kurtosis
32+
* @returns {PositiveNumber} excess kurtosis
3333
*
3434
* @example
3535
* var v = kurtosis( 0.1 );

lib/node_modules/@stdlib/stats/base/dists/betaprime/kurtosis/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
3030
*
3131
* @param {PositiveNumber} alpha - first shape parameter
3232
* @param {PositiveNumber} beta - second shape parameter
33-
* @returns {number} kurtosis
33+
* @returns {number} excess kurtosis
3434
*
3535
* @example
3636
* var v = kurtosis( 2.0, 6.0 );

lib/node_modules/@stdlib/stats/base/dists/betaprime/kurtosis/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var addon = require( './../src/addon.node' );
3131
* @private
3232
* @param {PositiveNumber} alpha - first shape parameter
3333
* @param {PositiveNumber} beta - second shape parameter
34-
* @returns {number} kurtosis
34+
* @returns {number} excess kurtosis
3535
*
3636
* @example
3737
* var v = kurtosis( 2.0, 6.0 );

lib/node_modules/@stdlib/stats/base/dists/binomial/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ interface Namespace {
110110
entropy: typeof entropy;
111111

112112
/**
113-
* Returns the kurtosis of a binomial distribution.
113+
* Returns the excess kurtosis of a binomial distribution.
114114
*
115115
* ## Notes
116116
*

lib/node_modules/@stdlib/stats/base/dists/binomial/kurtosis/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Returns the kurtosis of a binomial distribution.
22+
* Returns the excess kurtosis of a binomial distribution.
2323
*
2424
* ## Notes
2525
*

lib/node_modules/@stdlib/stats/base/dists/binomial/kurtosis/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var PINF = require( '@stdlib/constants/float64/pinf' );
2828
// MAIN //
2929

3030
/**
31-
* Returns the kurtosis of a binomial distribution.
31+
* Returns the excess kurtosis of a binomial distribution.
3232
*
3333
* @param {NonNegativeInteger} n - number of trials
3434
* @param {Probability} p - success probability

lib/node_modules/@stdlib/stats/base/dists/chi/kurtosis/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ tape( 'if provided a degrees of freedom parameter `k` that is not a positive num
6161
t.end();
6262
});
6363

64-
tape( 'the function returns the kurtosis of a chi distribution', function test( t ) {
64+
tape( 'the function returns the excess kurtosis of a chi distribution', function test( t ) {
6565
var expected;
6666
var delta;
6767
var tol;

lib/node_modules/@stdlib/stats/base/dists/chisquare/kurtosis/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ tape( 'if provided a degrees of freedom parameter `k` that is not a positive num
6060
t.end();
6161
});
6262

63-
tape( 'the function returns the kurtosis of a chi-squared distribution', function test( t ) {
63+
tape( 'the function returns the excess kurtosis of a chi-squared distribution', function test( t ) {
6464
var expected;
6565
var k;
6666
var i;

lib/node_modules/@stdlib/stats/base/dists/discrete-uniform/kurtosis/test/test.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ tape( 'if provided `a > b`, the function returns `NaN`', opts, function test( t
5858
t.end();
5959
});
6060

61-
tape( 'the function returns the kurtosis of a discrete uniform distribution', opts, function test( t ) {
61+
tape( 'the function returns the excess kurtosis of a discrete uniform distribution', opts, function test( t ) {
6262
var expected;
6363
var delta;
6464
var tol;

lib/node_modules/@stdlib/stats/base/dists/exponential/kurtosis/include/stdlib/stats/base/dists/exponential/kurtosis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Returns the kurtosis of an exponential distribution.
30+
* Returns the excess kurtosis of an exponential distribution.
3131
*/
3232
double stdlib_base_dists_exponential_kurtosis( const double lambda );
3333

0 commit comments

Comments
 (0)