leq
Computes an element-wise comparison (less than or equal to) of an array.
Installation
$ npm install compute-leq
For use in the browser, use browserify.
Usage
var leq = ;
leq( arr, x[, opts] )
Computes an element-wise comparison (less than or equal to) for each input array
element. x
may either be an array
of equal length or a single value (number
or string
).
The function returns an array
with a length equal to that of the input array
. Each output array
element is either 0
or 1
. A value of 1
means that an element is less than or equal to a compared value and 0
means that an element is not less than or equal to a compared value.
var arr = 5 3 8 3 2out;// Single comparison value:out = ;// returns [ 0, 1, 0, 1, 1 ]// Array of comparison values:out = ;// returns [ 1, 1, 0, 1, 1 ]
The function accepts the following options
:
- copy:
boolean
indicating whether to return a newarray
. Default:true
. - accessor: accessor
function
for accessing values in objectarrays
.
To mutate the input array
(e.g., when input values can be discarded or when optimizing memory usage), set the copy
option to false
.
var arr = 5 3 8 3 2 ;var out =;// returns [ 0, 1, 0, 1, 1 ]console;// returns true
For object arrays
, provide an accessor function
for accessing array
values.
var data ='beep' 5'boop' 3'bip' 8'bap' 3'baz' 2;{return d 1 ;}var out =;// returns [ 0, 1, 0, 1, 1 ]
When comparing values between two object arrays
, provide an accessor function
which accepts 3
arguments.
var data ='beep' 5'boop' 3'bip' 8'bap' 3'baz' 2;var arr ='x': 4'x': 3'x': 6'x': 5'x': 2;{if j === 0return d 1 ;return dx;}var out =;// returns [ 0, 1, 0, 1, 1 ]
Note: j
corresponds to the input array
index, where j=0
is the index for the first input array
and j=1
is the index for the second (comparison) input array
.
Examples
var leq =sum = ;// Simulate some data...var data = 100 ;for var i = 0; i < datalength; i++data i = Math;var out = ;// Count the number of values less than or equal to 50...var count = ;console;
To run the example code from the top-level application directory,
$ node ./examples/index.js
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-2015. Athan Reines.