Challenge - 5 Problems
Hierarchical Clustering Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Understanding linkage methods in hierarchical clustering
Which linkage method in hierarchical clustering merges clusters based on the maximum distance between points in the two clusters?
Attempts:
2 left
❓ Predict Output
intermediate2:00remaining
Output of dendrogram linkage matrix
What is the output of the following Python code snippet using scipy for hierarchical clustering linkage matrix?
ML Python
from scipy.cluster.hierarchy import linkage import numpy as np X = np.array([[1, 2], [3, 4], [5, 6]]) Z = linkage(X, method='single') print(Z)
Attempts:
2 left
❓ Model Choice
advanced2:00remaining
Choosing hierarchical clustering for data type
Which type of dataset is hierarchical clustering most suitable for compared to k-means clustering?
Attempts:
2 left
❓ Hyperparameter
advanced2:00remaining
Effect of distance metric on hierarchical clustering
How does changing the distance metric from Euclidean to Manhattan affect hierarchical clustering results?
Attempts:
2 left
❓ Metrics
expert2:00remaining
Interpreting cophenetic correlation coefficient
What does a cophenetic correlation coefficient close to 1 indicate about a hierarchical clustering result?
Attempts:
2 left