How to know about group information in cluster analysis (hierarchical)?
I have problem about group in cluster analysis(hierarchical cluster). As example, this is the dendrogram of complete linkage of Iris data set . After I use > table(cutree(hc, 3), iris$Species) This is the output : setosa versicolor virginica 1 50 0 0 2 0 23 49 3 0 27 1 I have read in one statistical website that, object 1 in the data always belongs to group/cluster 1. From the output above, we know that setosa is in group 1 . Then, how I am going to know about the other two species. How do they fall into either group 2 or 3. How did it happen. Perhaps there is a calculation I need to know? I'm