Skill · Unsupervised learningLive
Clustering
Group data with no labels at all — K-Means, the elbow method, and dimensionality reduction with PCA.
- Task 1Your first K-MeansEasyGroup unlabelled points into clusters.→
- Task 2Assign new pointsEasyRoute fresh data to the cluster it's nearest to.→
- Task 3Pick K with the elbowMediumUse inertia to reason about how many clusters to use.→
- Task 4Scale before you clusterMediumStop a big-range feature from hijacking the distances.→
- Task 5Silhouette scoreMediumPut a number on how clean your clustering is.→
- Task 6Cluster real dataHardDiscover the species in Iris without ever seeing the labels.→
- Task 7PCA to 2DHardSquash many features down to two you can plot.→
- Task 8Variance explainedHardCheck how much information your reduction kept.→
- Task 9DBSCAN & densityHardFind oddly-shaped clusters K-Means would butcher.→
- Task 10Cluster + reduceHardReduce first, then cluster — the standard high-dim recipe.→