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 | |
---|---|---|
.. | ||
License | 4 years ago | |
Readme.md | 4 years ago | |
index.js | 4 years ago | |
package.json | 4 years ago |
Readme.md
parse-svg-path
A minimal svg path parser. For the delux model see hughsk/svg-path-parser or for the streaming model see nfroidure/SVGPathData.
Installation
- packin:
packin add jkroso/parse-svg-path
- component:
component install jkroso/parse-svg-path
- npm:
npm install parse-svg-path
then in your app:
var parse = require('parse-svg-path')
API
parse(string)
parse an svg path data string. Generates an Array
of commands where each command is an Array of the
form [command, arg1, arg2, ...]
parse('m1 2 3 4') // => [['m',1,2],['l',3,4]]
Running the tests
Just run make
and navigate your browser to the test directory.