K-Means Explained

Explaining and Implementing kMeans Algorithm in Python

Vatsal
Towards Data Science
4 min readFeb 24, 2021

--

Image by Kelly Sikkema from Unsplash

This article will outline a conceptual understanding of the k-Means algorithm and its associated python implementation using the sklearn library. K-means is a clustering algorithm with many use cases in real world situations. This algorithm generates K clusters associated with a dataset, it can be done for various scenarios in different…

--

--