views:

56

answers:

3

I would like to know

  1. K-means is best suited for clustering of which type of data?
  2. When k-means fails? for which type of data set k-means does not give accurate answer?
  3. COBWEB is best suited for clustering of which type of data?
  4. When COBWEB fails? for which type of data set COBWEB does not give accurate answer?
+1  A: 

1)Looking at some Infinite training Finite training, I can say that K-means is best suited for any kind of data which can be divided in to vectors and best for quantitative data.

2)K-means fails When the numbers of data are not so many,When initial condition is sensitive or flickering ,which gives different results

Dhaval dave
+1  A: 

K-means can have issues in high dimensions when using euclidian distance as everything ends up being "close".

What type of clustering are you trying to do?

Chad Brewbaker
I am proposing a new incremental clustering method. I am working on 8 different domain data sets and getting expected results. Hence wanted to try a data set where my method may not work. In this regard wanted to know k-means and COBWEB will be suitable for which domain? so as to find out credentials of my work.
Arpana
+1  A: 

I have had problems using K means clustering with a data set that included Dip and Dip Direction (points on the surface of a sphere). In the end I had to create a crude genetic algorithm to do the clustering.

Ian Turner