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.
|
4 years ago | |
---|---|---|
.. | ||
bin | 4 years ago | |
example | 4 years ago | |
node_modules | 4 years ago | |
test | 4 years ago | |
.travis.yml | 4 years ago | |
LICENSE | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago | |
readme.markdown | 4 years ago |
readme.markdown
quote-stream
transform a stream into a quoted string
example
var quote = require('quote-stream');
process.stdin.pipe(quote()).pipe(process.stdout);
output:
$ echo beep boop | node example/stream.js
"beep boop\n"
methods
var quote = require('quote-stream')
var q = quote()
Return a transform stream q
that wraps input in double quotes and adds escape
characters to the chunks.
usage
usage: quote-stream
Transform stdin to a quoted string on stdout.
install
With npm do:
npm install quote-stream
license
MIT