skmeans
Version:
Super fast simple k-means and k-means++ clustering for unidimiensional and multidimensional data. Works in node and browser
22 lines (16 loc) • 438 B
JavaScript
;
(function () {
var root = this;
var previous_skmeans = root.skmeans;
var skmeans = require('./main.js');
if (typeof exports !== 'undefined') {
if (typeof module !== 'undefined' && module.exports) {
exports = module.exports = skmeans;
}
exports.skmeans = skmeans;
}
if (typeof window !== 'undefined') {
window.skmeans = skmeans;
}
}).call(void 0);
//# sourceMappingURL=browser.js.map