SciPy - Clustering and Distance
You have a dataset with 10 points clustered hierarchically. You want exactly 3 clusters. Which
fcluster call correctly achieves this?fcluster call correctly achieves this?criterion='maxclust' with t=3 specifying number of clusters.maxclust with 3 clusters. fcluster(Z, 3, criterion='distance') uses distance criterion which does not guarantee exact cluster count. Options A and C use incorrect thresholds or criteria.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions