1 / 31

What is Cluster Analysis?

What is Cluster Analysis?. Finding groups of objects such that the objects in a group will be similar (or related) to one another and different from (or unrelated to) the objects in other groups. Applications of Cluster Analysis. Understanding

Télécharger la présentation

What is Cluster Analysis?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. What is Cluster Analysis? • Finding groups of objects such that the objects in a group will be similar (or related) to one another and different from (or unrelated to) the objects in other groups

  2. Applications of Cluster Analysis • Understanding • Group related documents for browsing, group genes and proteins that have similar functionality, or group stocks with similar price fluctuations • Summarization • Reduce the size of large data sets Clustering precipitation in Australia

  3. How many clusters? Six Clusters Two Clusters Four Clusters Notion of a Cluster can be Ambiguous

  4. Types of Clusterings • A clustering is a set of clusters • Important distinction between hierarchical and partitionalsets of clusters • Partitional Clustering • A division of data objects into non-overlapping subsets (clusters) such that each data object is in exactly one subset • Hierarchical clustering • A set of nested clusters organized as a hierarchical tree

  5. Partitional vs Hierarchical Clustering Original Points A Partitional Clustering Dendrogram Hierarchical Clustering

  6. Other Distinctions Between Sets of Clusters • Exclusive versus Overlapping versus Fuzzy • Exclusive: each object is assigned to only one cluster • Overlapping: an object may belong to more than one cluster • Fuzzy: every object belongs to every cluster, with a weight between 0 (absolutely doesn’t belong) and 1 (absolutely belongs) • Partial versus complete • Complete clustering: assigns every object to a cluster • Partial clustering: does not have to assign every object to some clusters

  7. K-means Clustering • Partitional clustering approach • Each cluster is associated with a centroid (center) • Number of clusters, K, must be specified

  8. Illustrating K-means

  9. Illustrating K-means

  10. K-means Clustering – Details • Initial centroids are often chosen randomly. • Clusters produced vary from one run to another. • ‘Closeness’ is measured by a proximity measure • e.g., Euclidean distance, cosine similarity, or correlation • K-means will converge for common proximity measures mentioned above. • Most of the convergence happens in the first few iterations. • Complexity is O( n * K * I * d ) • n = number of points, K = number of clusters, I = number of iterations, d = number of attributes

  11. K-means as Optimization Problem • k-means clustering can be viewed as an iterative approach for minimizing sum of squared error (SSE) • x: a data point in cluster Ci • i is the representative point for cluster Ci • For SSE, we can show that i corresponds to center of the cluster • One easy way to reduce SSE is to increase K, the number of clusters • A good clustering with smaller K can have a lower SSE than a poor clustering with higher K

  12. Optimal Clustering Sub-optimal Clustering Two different K-means Clusterings Original Points

  13. Importance of Choosing Initial Centroids …

  14. Importance of Choosing Initial Centroids …

  15. 10 Clusters Example Starting with two initial centroids in one cluster of each pair of clusters

  16. 10 Clusters Example Starting with two initial centroids in one cluster of each pair of clusters

  17. 10 Clusters Example Starting with some pairs of clusters having three initial centroids, while other have only one.

  18. 10 Clusters Example Starting with some pairs of clusters having three initial centroids, while other have only one.

  19. Solutions to Initial Centroids Problem • Multiple runs • Helps, but probability might not be on your side • Sample and use hierarchical clustering to determine initial centroids • Select more than k initial centroids and then select among these initial centroids • Select the most widely separated centroids • Postprocessing • Bisecting K-means

  20. Empty Clusters • K-means can yield empty clusters Empty Cluster

  21. Handling Empty Clusters • Choose a new centroid to replace the empty cluster • Several strategies • Choose the point that contributes most to SSE • this corresponds to the point that is farthest away from any of the current centroids • Choose a point from the cluster with the highest SSE • This will split the cluster and reduces the overall SSE

  22. Pre-processing and Post-processing • Pre-processing • Normalize the data • Eliminate outliers • Post-processing • Eliminate small clusters that may represent outliers • Split ‘loose’ clusters, i.e., clusters with relatively high SSE • Merge clusters that are ‘close’ and that have relatively low SSE

  23. Bisecting K-means • Bisecting K-means algorithm • Variant of K-means that can produce a partitional or a hierarchical clustering

  24. Bisecting K-means Example

  25. Limitations of K-means • K-means has problems when clusters are of differing • Sizes • Densities • Non-globular shapes • K-means has problems when the data contains outliers.

  26. Limitations of K-means: Differing Sizes K-means (3 Clusters) Original Points

  27. Limitations of K-means: Differing Density K-means (3 Clusters) Original Points

  28. Limitations of K-means: Non-globular Shapes Original Points K-means (2 Clusters)

  29. Overcoming K-means Limitations Original Points K-means Clusters • One solution is to use many clusters. • Find parts of clusters, but need to put together.

  30. Overcoming K-means Limitations Original Points K-means Clusters

  31. Overcoming K-means Limitations Original Points K-means Clusters

More Related