dimas-kmeans

1.0.3 • Public • Published

dimas-kmeans

Simple implementation of K-Means in Javascript

getClusters(data, [numberOfClusters])

data : The data for clusterization, should be array of vectors (arrays), numberOfClusters : Optional, the default is Root of the size of the data divided by two.

var kmeans = require('dimas-kmeans')

var data = [
	[1,2],
	[2,1],
	[10,11],
	[12,13]
]

var clusters = kmeans.getClusters(data);
The result should be:
clusters[0]: [ [ 10, 11 ], [ 12, 13 ] ]

clusters[1]: [ [ 1, 2 ], [ 2, 1 ] ]

/dimas-kmeans/

    Package Sidebar

    Install

    npm i dimas-kmeans

    Weekly Downloads

    28

    Version

    1.0.3

    License

    ISC

    Last publish

    Collaborators

    • shudima