StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
644 B
30 lines
644 B
4 years ago
|
robust-subtract
|
||
|
===============
|
||
|
Exactly computes the difference of two non-increasing overlapping sequences. See [robust-sum for more details](https://github.com/mikolalysenko/robust-sum).
|
||
|
|
||
|
# Example
|
||
|
|
||
|
```javascript
|
||
|
var robustDiff = require("robust-subtract")
|
||
|
|
||
|
console.log(robustDiff([1], [1e-64]))
|
||
|
```
|
||
|
|
||
|
# Install
|
||
|
|
||
|
```
|
||
|
npm install robust-subtract
|
||
|
```
|
||
|
|
||
|
# API
|
||
|
|
||
|
### `require("robust-subtract")(a,b)`
|
||
|
Returns the difference of the sequences `a` and `b` encoded as a non-overlapping increasing sequence.
|
||
|
|
||
|
* `a` is the first number
|
||
|
* `b` is the second number
|
||
|
|
||
|
**Returns** The difference of `a` and `b`
|
||
|
|
||
|
## Credits
|
||
|
(c) 2014 Mikola Lysenko. MIT License
|