Package Exports
- node-scatterplot
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-scatterplot) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-scatterplot
One-off mini-server to quickly plot datasets to a temporary browser window.
const plot = require('node-scatterplot')
var set = []
for (var i = 0; i < 20; i++) {
set.push([ Math.sqrt(i), i * (1 + Math.sin(i/2)) ])
}
plot(set)
License
Released under the MIT License