I have plotted a dendrogram using maximum agglomeration method.
hc <- hclust(distance_matrix, method = "complete")
plot(hc, hang = 0, labels=ilpd_df$Class)
Q1) How can I find the accuracy of this agglomeration method?
Q2) How should one comment on the sensitivity of test data to the agglomeration method?
Thank you =)