Computes the interquartile range for an array of values.
npm install compute-iqrInterquartile Range
===
[![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coveralls-image]][coveralls-url] [![Dependencies][dependencies-image]][dependencies-url]
> Computes the interquartile range (iqr) for an array of values.
`` bash`
$ npm install compute-iqr
For use in the browser, use browserify.
To use the module,
` javascript`
var iqr = require( 'compute-iqr' );
#### iqr( arr[, opts] )
Computes the interquartile range provided an input array.
` javascript
var unsorted = [ 8, 2, 3, 9, 5, 1, 4, 10, 7, 0, 6 ];
var r = iqr( unsorted );
// returns 6
`
If the input array is already sorted in __ascending__ order, set the sorted flag to true.
` javascript
var sorted = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];
var r = iqr( sorted, {'sorted': true} );
// returns 6
`
Additional options are the same as for the quantile module.
` javascript
var data = new Array( 100 );
for ( var i = 0; i < data.length; i++ ) {
data[ i ] = Math.round( Math.random()*100 );
}
console.log( iqr( data ) );
`
To run the example code from the top-level application directory,
` bash`
$ node ./examples/index.js
If the input array is not sorted in __ascending__ order, the function is O( N log( N ) ). If the input array is sorted, the function is O(1).
Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:
` bash`
$ make test
All new feature development should have corresponding unit tests to validate correct functionality.
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:
` bash`
$ make test-cov
Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,
` bash``
$ make view-cov
---
Copyright © 2014. Athan Reines.
[npm-image]: http://img.shields.io/npm/v/compute-iqr.svg
[npm-url]: https://npmjs.org/package/compute-iqr
[travis-image]: http://img.shields.io/travis/compute-io/iqr/master.svg
[travis-url]: https://travis-ci.org/compute-io/iqr
[coveralls-image]: https://img.shields.io/coveralls/compute-io/iqr/master.svg
[coveralls-url]: https://coveralls.io/r/compute-io/iqr?branch=master
[dependencies-image]: http://img.shields.io/david/compute-io/iqr.svg
[dependencies-url]: https://david-dm.org/compute-io/iqr
[dev-dependencies-image]: http://img.shields.io/david/dev/compute-io/iqr.svg
[dev-dependencies-url]: https://david-dm.org/dev/compute-io/iqr
[github-issues-image]: http://img.shields.io/github/issues/compute-io/iqr.svg
[github-issues-url]: https://github.com/compute-io/iqr/issues