I used hclust to cluster my data and cutree to specify the numbers of cluster to be 3. Is there any way that I can examine each of the cluster? By examine I mean to list out the cases/observations that are in e.g. the first cluster. I tried all the basic function that I know such as summary(), list()...but seem not relevant. Any function can do this?
If not, the cutree function returns a list of groups/clusters that each of my observation belongs to, something like this:
1,3,1,2,3,3,1
which indicates my first observation belongs to group 1, second belong to group three... I am thinking about how to extract the position from that list where e.g. group = 1, so it will return 1,3 and 7 since observations 1,3,7 are belong to group 1
Or I need to use a loop to count all the observations that belong to e.g. group 1 from that list?
Is my question clear?