What do we know about our clusters?
Based on the code below, what can you concretely say about the relationships of the members within each cluster?
dist_players <- dist(lineup, method = 'euclidean')
hc_players <- hclust(dist_players, method = 'complete')
clusters <- cutree(hc_players, h = 40)
Every member belonging to a cluster must have:
This exercise is part of the course
Cluster Analysis in R
Hands-on interactive exercise
Turn theory into action with one of our interactive exercises
