File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed
lib/node_modules/@stdlib/stats/incr/nanrange Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ accumulator = incrnanrange();
103103
104104// For each simulated datum, update the range...
105105for ( i = 0 ; i < 100 ; i++ ) {
106- v = randu () > 0.1 ? randu () * 100.0 : NaN ; // Introduce some NaNs
106+ v = ( randu () > 0.1 ) ? ( randu () * 100.0 ) : NaN ;
107107 accumulator ( v );
108108}
109109console .log ( accumulator () );
@@ -136,12 +136,6 @@ console.log( accumulator() );
136136
137137<!-- <related-links> -->
138138
139- [ @stdlib/stats/incr/max ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/max
140-
141- [ @stdlib/stats/incr/mean ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/mean
142-
143- [ @stdlib/stats/incr/min ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/min
144-
145139[ @stdlib/stats/incr/mrange ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/mrange
146140
147141[ @stdlib/stats/incr/nanmean ] : https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/stats/incr/nanmean
You can’t perform that action at this time.
0 commit comments