Skip to content

Commit 35ec6fa

Browse files
committed
[RFC]: add stats/incr/nanvmr
1 parent c4b6b56 commit 35ec6fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/incr/nanvmr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/stats/incr/vmr",
2+
"name": "@stdlib/stats/incr/nanvmr",
33
"version": "0.0.0",
44
"description": "Compute a variance-to-mean ratio (VMR) incrementally.",
55
"license": "Apache-2.0",

lib/node_modules/@stdlib/stats/incr/nanvmr/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ tape( 'if provided a `NaN`, the accumulator function ignores it and continues wi
219219
var i;
220220

221221
data = [ NaN, 2.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0 ];
222-
acc = incrvmr();
222+
acc = incrnanvmr();
223223
for ( i = 0; i < data.length; i++ ) {
224224
v = acc( data[ i ] );
225225
if (!isnan( data[i] )) {

0 commit comments

Comments
 (0)