Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/c0bra/smeans.js
S-Means clustering in javascript
https://github.com/c0bra/smeans.js
clustering grouping javascript s-means statistics
Last synced: 10 days ago
JSON representation
S-Means clustering in javascript
- Host: GitHub
- URL: https://github.com/c0bra/smeans.js
- Owner: c0bra
- License: mit
- Created: 2012-10-19T14:10:04.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-12-18T20:26:13.000Z (almost 10 years ago)
- Last Synced: 2024-10-10T12:50:43.948Z (27 days ago)
- Topics: clustering, grouping, javascript, s-means, statistics
- Language: JavaScript
- Homepage: http://c0bra.github.io/smeans.js
- Size: 1.15 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# smeans.js
S-Means clustering in JavaScript
## Getting Started
### On the server
Install the module with: `npm install s-means.js````javascript
var smeans = require('smeans.js');
smeans.cluster(...);
```### In the browser
Download the [production version][min] or the [development version][max].[min]: https://raw.github.com/c0bra/smeans.js/master/dist/s-means.min.js
[max]: https://raw.github.com/c0bra/smeans.js/master/dist/s-means.jsIn your web page:
```html
awesome(); // "awesome"
```
In your code, you can attach s-means.js's methods to any object.
```html
var exports = Bocoup.utils;
Bocoup.utils.awesome(); // "awesome"
```
## Documentation
_(Coming soon)_## Examples
_(Coming soon)_## Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/)._Also, please don't edit files in the "dist" subdirectory as they are generated via Grunt. You'll find source code in the "lib" subdirectory!_
## Release History
_(Nothing yet)_## License
Copyright (c) 2014 Brian Hann
Licensed under the MIT license.