Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find a reliable K-medoid(Not k-means) open source software/tool? [closed]

I am learning the K-medoids algorithm so I am sorry if I ask inappropriate questions. As I know,the K-medoids algorithm implements a K-means clustering but use actual data points to be centroid instead of mathematical calculated means.

As I googled online, I found a lot of k-means tools such as GenePattern, geWengh,...etc but not the k-medoids ones. Some nice friends has showed me that at Matlab, there is also one written by some user. However, I am afraid that personal implemented tool may still have some bugs or limitations. Thus, I am wondering if there is some widely used reliable open source software/tools which uses actual data points as centroids to cluster. I need to find out the information about actual centroids so only returning clustering results is not enough. I prefer website online ones but if this is not the case, I am ok to install it to my local machine. Thank you very much,

like image 227
Cassie Avatar asked Oct 05 '11 20:10

Cassie


2 Answers

  1. A k-medoid implmentation in C is available in the C Clustering Library (source, Manual). (note that Cluster 3.0 is an extension of this library, and may not provide k-medoids)

    From the manual:

    In the C Clustering Library, three partitioning algorithms are available: • k-means clustering • k-medians clustering • k-medoids clustering

  2. k-medoids in mlpy, Machine Learning library in Python

  3. k-medoids in Matlab

  4. k-medoids in Java

  5. k-medoids in C++

like image 86
cyborg Avatar answered Oct 13 '22 00:10

cyborg


Software:

  • ELKI includes several k-means variants, including K-medoids and PAM.
  • GNU R includes on the "flexclust" package variants of k-means and on the "cluster" package.

Source: http://en.wikipedia.org/wiki/K-medoids

like image 37
Antonio Ercole De Luca Avatar answered Oct 13 '22 01:10

Antonio Ercole De Luca