Here is an example of how to use kmeans algorithm: http://mnemstudio.org/clustering-k-means-example-1.htm
In this example, the author used as initial centroids "the two individuals furthest apart (using the Euclidean distance measure)", as it was said.
What if I want not two clusters, but 10! How do I choose the first 10 centroids? Is there a way to choose the ten individuals furthest apart? Or should I use another way to choose them.
PS: I don't think using a randon choice will be good in my case. Also, I've been trying to use the first 10 individuals as centroids, but I am looking for a better way to choose them.