106 lines
2.0 KiB
Markdown
106 lines
2.0 KiB
Markdown
|
<!--
|
||
|
|
||
|
@license Apache-2.0
|
||
|
|
||
|
Copyright (c) 2020 The Stdlib Authors.
|
||
|
|
||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
you may not use this file except in compliance with the License.
|
||
|
You may obtain a copy of the License at
|
||
|
|
||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||
|
|
||
|
Unless required by applicable law or agreed to in writing, software
|
||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
See the License for the specific language governing permissions and
|
||
|
limitations under the License.
|
||
|
|
||
|
-->
|
||
|
|
||
|
# incrnancount
|
||
|
|
||
|
> Compute a count incrementally, ignoring `NaN` values.
|
||
|
|
||
|
<section class="usage">
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
```javascript
|
||
|
var incrnancount = require( '@stdlib/stats/incr/nancount' );
|
||
|
```
|
||
|
|
||
|
#### incrnancount()
|
||
|
|
||
|
Returns an accumulator `function` which incrementally computes a count, ignoring `NaN` values.
|
||
|
|
||
|
```javascript
|
||
|
var accumulator = incrnancount();
|
||
|
```
|
||
|
|
||
|
#### accumulator( \[x] )
|
||
|
|
||
|
If provided an input value `x`, the accumulator function returns an updated count. If not provided an input value `x`, the accumulator function returns the current count.
|
||
|
|
||
|
```javascript
|
||
|
var accumulator = incrnancount();
|
||
|
|
||
|
var count = accumulator( 2.0 );
|
||
|
// returns 1
|
||
|
|
||
|
count = accumulator( 1.0 );
|
||
|
// returns 2
|
||
|
|
||
|
count = accumulator( NaN );
|
||
|
// returns 2
|
||
|
|
||
|
count = accumulator( 3.0 );
|
||
|
// returns 3
|
||
|
|
||
|
count = accumulator();
|
||
|
// returns 3
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.usage -->
|
||
|
|
||
|
<section class="examples">
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
<!-- eslint no-undef: "error" -->
|
||
|
|
||
|
```javascript
|
||
|
var randu = require( '@stdlib/random/base/randu' );
|
||
|
var incrnancount = require( '@stdlib/stats/incr/nancount' );
|
||
|
|
||
|
var accumulator;
|
||
|
var v;
|
||
|
var i;
|
||
|
|
||
|
// Initialize an accumulator:
|
||
|
accumulator = incrnancount();
|
||
|
|
||
|
// For each simulated datum, update the count...
|
||
|
for ( i = 0; i < 100; i++ ) {
|
||
|
if ( randu() < 0.2 ) {
|
||
|
v = NaN;
|
||
|
} else {
|
||
|
v = randu() * 100.0;
|
||
|
}
|
||
|
accumulator( v );
|
||
|
}
|
||
|
console.log( accumulator() );
|
||
|
```
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.examples -->
|
||
|
|
||
|
<section class="links">
|
||
|
|
||
|
</section>
|
||
|
|
||
|
<!-- /.links -->
|