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.
28 lines
1.2 KiB
28 lines
1.2 KiB
4 years ago
|
# string-to-arraybuffer [](http://github.com/badges/stability-badges) [](https://travis-ci.org/dy/string-to-arraybuffer)
|
||
|
|
||
|
Turn dataURI/base64/plain string into an _ArrayBuffer_.
|
||
|
|
||
|
[](https://npmjs.org/package/string-to-arraybuffer/)
|
||
|
|
||
|
```js
|
||
|
var str2ab = require('string-to-arraybuffer')
|
||
|
|
||
|
// Plain 'Hello World!'
|
||
|
var abuf1 = str2ab('Hello World!')
|
||
|
|
||
|
// Base-64 'Hello World!'
|
||
|
var abuf2 = str2ab('SGVsbG8sIFdvcmxkIQ%3D%3D')
|
||
|
|
||
|
// Barebones data-uri 'Hello World!'
|
||
|
var abuf3 = str2ab('data:,Hello%2C%20World!')
|
||
|
|
||
|
// Base-64 data-uri 'Hello World!'
|
||
|
var abuf4 = str2ab('data:text/plain;base64,SGVsbG8sIFdvcmxkIQ%3D%3D')
|
||
|
```
|
||
|
|
||
|
### Related
|
||
|
|
||
|
* [arraybuffer-to-string](https://github.com/dy/arraybuffer-to-string) − represent binary data in string
|
||
|
* [data-uri-to-buffer](https://www.npmjs.com/package/data-uri-to-buffer) − decode URI string to Buffer.
|
||
|
* [to-array-buffer](https://www.npmjs.com/package/to-array-buffer) − convert anything to ArrayBuffer.
|