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.
56 lines
1.4 KiB
56 lines
1.4 KiB
4 years ago
|
# stream-combiner
|
||
|
|
||
|
[](https://npmjs.org/package/stream-combiner)
|
||
|
[](https://travis-ci.org/dominictarr/stream-combiner)
|
||
|
|
||
|
## Combine (stream1,...,streamN)
|
||
|
|
||
|
Turn a pipeline into a single stream. `Combine` returns a stream that writes to the first stream
|
||
|
and reads from the last stream.
|
||
|
|
||
|
Listening for 'error' will recieve errors from all streams inside the pipe.
|
||
|
|
||
|
```js
|
||
|
var Combine = require('stream-combiner')
|
||
|
var es = require('event-stream')
|
||
|
|
||
|
Combine( // connect streams together with `pipe`
|
||
|
process.openStdin(), // open stdin
|
||
|
es.split(), // split stream to break on newlines
|
||
|
es.map(function (data, callback) { // turn this async function into a stream
|
||
|
var repr = util.inspect(JSON.parse(data)) // render it nicely
|
||
|
callback(null, repr)
|
||
|
}),
|
||
|
process.stdout // pipe it to stdout !
|
||
|
)
|
||
|
```
|
||
|
|
||
|
Can also be called with an array:
|
||
|
|
||
|
```js
|
||
|
var combinedStream = Combine([
|
||
|
stream1,
|
||
|
stream2,
|
||
|
]);
|
||
|
```
|
||
|
|
||
|
Or to combine gulp plugins:
|
||
|
|
||
|
```js
|
||
|
function coffeePipe() {
|
||
|
return Combine(
|
||
|
coffeescript(),
|
||
|
coffeelint.reporter('fail').on('error', function(){
|
||
|
gutil.beep()
|
||
|
gulp.run('lint')
|
||
|
})
|
||
|
}
|
||
|
|
||
|
//usage:
|
||
|
gulp.src().pipe(coffeePipe());
|
||
|
```
|
||
|
|
||
|
## License
|
||
|
|
||
|
MIT
|