"Within Cluster Distances"

ShubhaShubha MemberPosts:139Guru
edited May 2019 inHelp
Hi,

I have run a kmeans procedure and got the cluster centroids. Now, i want to calculate the euclidean distance from each row to its respective cluster centroids. In other words, i need to calculate the within cluster distances. Any ideas?

What i can of think is:

For simplicity, assuming only one cluster,
1.我将合并(合并行)examplesetthe cluster centroid exampleset. And do the 'ExampleSet2Similarity' operator. And then have to delete many rows(unncessary calculations) in the resultant exampleset. This complicates when the number of clusters are many and for large data too.
2. Merge(combine columns) of the exampleset with the corresponding cluter centroids (this may take some time). And then have to actually compute the formula for euclidean distance.

But i find both of these methods as tedious and was wondering if there was a simpler solution for this problem.

Thanks for your time,
Shubha
Tagged:

Answers

  • landland RapidMiner Certified Analyst, RapidMiner Certified Expert, MemberPosts:2,531Unicorn
    Hi,
    yes there is a much simpler solution:
    The operator ClusterCentroidEvaluator provides the possibility to calculate the average squared within distance automatically, given an exampleSet and a cluster model.

    Greetings,
    Sebastian
  • ShubhaShubha MemberPosts:139Guru
    Thanks Sebastian, But i dont want the average. I need for each of the observations in the ExampleSet, to calculate the euclidean distance from its respective centroids. So, a column will be generated in the ExampleSet, giving the euclidean distance.

    Thanks, Shubha
Sign InorRegisterto comment.