Skip to content

Commit ac78548

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 0139fb9 commit ac78548

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/node_modules/@stdlib/stats/strided/dpcorrwd/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
Returns
3232
-------
3333
out: number
34-
Pearson product-moment correlation coefficient.
34+
Sample correlation coefficient.
3535

3636
Examples
3737
--------
@@ -91,7 +91,7 @@
9191
Returns
9292
-------
9393
out: number
94-
Pearson product-moment correlation coefficient.
94+
Sample correlation coefficient.
9595

9696
Examples
9797
--------

lib/node_modules/@stdlib/stats/strided/dpcorrwd/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ interface Routine {
3030
* @param strideX - stride length of `x`
3131
* @param y - second input array
3232
* @param strideY - stride length of `y`
33-
* @returns Pearson correlation coefficient
33+
* @returns sample correlation coefficient
3434
*
3535
* @example
3636
* var Float64Array = require( '@stdlib/array/float64' );
@@ -53,7 +53,7 @@ interface Routine {
5353
* @param y - second input array
5454
* @param strideY - stride length of `y`
5555
* @param offsetY - starting index of `y`
56-
* @returns Pearson correlation coefficient
56+
* @returns sample correlation coefficient
5757
*
5858
* @example
5959
* var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/stats/strided/dpcorrwd/lib/dpcorrwd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var ndarray = require( './ndarray.js' );
3434
* @param {integer} strideX - stride length of `x`
3535
* @param {Float64Array} y - second input array
3636
* @param {integer} strideY - stride length of `y`
37-
* @returns {number} Pearson correlation coefficient
37+
* @returns {number} sample correlation coefficient
3838
*
3939
* @example
4040
* var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/stats/strided/dpcorrwd/lib/dpcorrwd.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var addon = require( './../src/addon.node' );
3333
* @param {integer} strideX - stride length of `x`
3434
* @param {Float64Array} y - second input array
3535
* @param {integer} strideY - stride length of `y`
36-
* @returns {number} Pearson correlation coefficient
36+
* @returns {number} sample correlation coefficient
3737
*
3838
* @example
3939
* var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/stats/strided/dpcorrwd/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var sqrt = require( '@stdlib/math/base/special/sqrt' );
3535
* @param {Float64Array} y - second input array
3636
* @param {integer} strideY - stride length of `y`
3737
* @param {NonNegativeInteger} offsetY - starting index of `y`
38-
* @returns {number} Pearson correlation coefficient
38+
* @returns {number} sample correlation coefficient
3939
*
4040
* @example
4141
* var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/stats/strided/dpcorrwd/lib/ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var addon = require( './../src/addon.node' );
3535
* @param {Float64Array} y - second input array
3636
* @param {integer} strideY - stride length of `y`
3737
* @param {NonNegativeInteger} offsetY - starting index of `y`
38-
* @returns {number} Pearson correlation coefficient
38+
* @returns {number} sample correlation coefficient
3939
*
4040
* @example
4141
* var Float64Array = require( '@stdlib/array/float64' );

0 commit comments

Comments
 (0)