kmeans-postgresql icon indicating copy to clipboard operation
kmeans-postgresql copied to clipboard

K-means function as a user-defined window function in PostgreSQL

Results 7 kmeans-postgresql issues
Sort by recently updated
recently updated
newest added

I see that this library is open-source. Would you mind adding an MIT or Apache License to it?

I'm running a version higher than Postgres 9.6 and when I try to install this I get the error "version mismatch". It seems nothing higher than 9.6 is supported. Is...

can you share any tutorial to how can i install kmean-postgresql to on my ubuntu 10.04? from start to end...

Build and install the extension on a range of PostgreSQL versions, and run a really basic test.

First off, I'd like to say that kmeans is spectacular and is doing an awesome job at clustering our data points! We are using kmeans to cluster coordinates on Google...

Somehow, we get never more than 3 clusters. Except for a few points, all of them fall into a single cluster. We are using postgis, using the following query: SELECT...

kmeans currently implements only single-pass simple algorithm. K-means can actually be improved by more complicated multi-pass approach.