70 likes | 124 Views
Learn about the K-means algorithm, its application, advantages, and limitations. Explore variations and solutions to handle categorical data and outliers effectively.
E N D
K-means • Arbitrarily choose k objects as the initial cluster centers • Until no change, do • (Re)assign each object to the cluster to which the object is the most similar, based on the mean value of the objects in the cluster • Update the cluster means, i.e., calculate the mean value of the objects for each cluster
10 9 8 7 6 5 4 3 2 1 0 0 1 2 3 4 5 6 7 8 9 10 K-Means: Example 10 9 8 7 6 5 Update the cluster means Assign each objects to most similar center 4 3 2 1 0 0 1 2 3 4 5 6 7 8 9 10 reassign reassign K=2 Arbitrarily choose K object as initial cluster center Update the cluster means
Pros and Cons of K-means • Relatively efficient: O(tkn) • n: # objects, k: # clusters, t: # iterations; k, t << n. • Often terminate at a local optimum • Applicable only when mean is defined • What about categorical data? • Need to specify the number of clusters • Unable to handle noisy data and outliers • unsuitable to discover non-convex clusters
Variations of the K-means • Aspects of variations • Selection of the initial k means • Dissimilarity calculations • Strategies to calculate cluster means • Handling categorical data: k-modes • Use mode instead of mean • Mode: the most frequent item(s) • A mixture of categorical and numerical data: k-prototype method
10 9 8 7 6 5 4 3 2 1 0 0 1 2 3 4 5 6 7 8 9 10 10 9 8 7 6 5 4 3 2 1 0 0 1 2 3 4 5 6 7 8 9 10 A Problem of K-means + + • Sensitive to outliers • Outlier: objects with extremely large values • May substantially distort the distribution of the data • K-medoids: the most centrally located object in a cluster