Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/node_modules/@stdlib/stats/incr/nanmapcorr/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ var isnan = require( '@stdlib/math/base/assert/is-nan' );
* ar = accumulator( 3.0, -1.0 );
* // returns ~0.925
*
* ar = accumulator( 3.0, NaN );
* // returns ~0.925
*
* ar = accumulator( 5.0, -9.5 );
* // returns ~0.863
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/stats/incr/nanmeanvar",
"version": "0.0.0",
"description": "Compute an arithmetic mean and unbiased sample variance incrementally, ignoring `NaN` values.",
"description": "Compute an arithmetic mean and unbiased sample variance incrementally, ignoring NaN values.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/stats/incr/nanmpcorr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ var r = accumulator();
r = accumulator( 2.0, 1.0 ); // [(2.0, 1.0)]
// returns 0.0

r = accumulator( 2.0, NaN ); // [(2.0, 1.0)]
r = accumulator( -2.0, NaN ); // [(2.0, 1.0)]
// returns 0.0

r = accumulator( -5.0, 3.14 ); // [(2.0, 1.0), (-5.0, 3.14)]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/stats/incr/nanmsumprod",
"version": "0.0.0",
"description": "Compute a moving sum of products incrementally, ignoring `NaN` values.",
"description": "Compute a moving sum of products incrementally, ignoring NaN values.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/stats/incr/nanpcorr/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/stats/incr/nanpcorr",
"version": "0.0.0",
"description": "Compute a sample Pearson product-moment correlation coefficient, ignoring `NaN` values.",
"description": "Compute a sample Pearson product-moment correlation coefficient, ignoring NaN values.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
Loading