K-Means Clustering
Unsupervised machine learning algorithm for partitioning data into clusters.
K-Means
A popular unsupervised machine learning algorithm used to partition data points into *k* distinct clusters. It iteratively assigns each point to the nearest cluster centroid (mean), and then recalculates the centroids based on the new assignments, until convergence is reached. Primarily used for exploratory data analysis and customer segmentation.
Built by Tim Jones