nanstdev
Computes the sample standard deviation over an array of values ignoring any values which are not numeric.
Installation
$ npm install compute-nanstdev
For use in the browser, use browserify.
Usage
To use the module,
var nanstdev = ;
nanstdev( arr )
Computes the sample standard deviation ignoring non-numeric values.
var data = 10 2 100 NaN 34 NaN 0 ;var sigma = ;
Examples
var nanstdev = ;var data = 1000 ;for var i = 0; i < datalength; i++if i%5 === 0data i = NaN;elsedata i = Math * 100;console;
To run the example code from the top-level application directory,
$ node ./examples/index.js
Notes
The sample standard deviation of an array containing non-numeric values is equal to the sample standard deviation of an equivalent array which contains only the numeric values. Hence,
var d1 = 1 NaN 2 3 NaNd2 = 1 2 3 ;console;// returns true
Tests
Unit
Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:
$ make test
All new feature development should have corresponding unit tests to validate correct functionality.
Test Coverage
This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
$ make test-cov
Istanbul creates a ./reports/coverage
directory. To access an HTML version of the report,
$ make view-cov
License
Copyright
Copyright © 2014. Athan Reines.