Home >Backend Development >Python Tutorial >K-means Clustering Using the Elbow Method.
Clustering or cluster analysis is machine learning technique, which groups the unlabeled dataset. It can be said that as "way of grouping the data points into different clusters, consisting of similar data points. The objects with the possible similarities remain in a group and those that have less or no similarities with another group"
Let's understand the clustering technique with the real-world example of Mall. When customers visit any shopping mall, we can observe that the things with similar usage are grouped together. Such as the t-shirts are grouped in one section, and trousers are at other sections, similarly, at vegetable sections, apple, bananas, Mangoes, e.t.c are grouped in a separate section, so that customers can easily find out the things. The clustering technique also works in the same way. Other examples of clustering are grouping of documents according to topics.
The above is the detailed content of K-means Clustering Using the Elbow Method.. For more information, please follow other related articles on the PHP Chinese website!