October 23, 2023

Today’s Lecture:-

K-Means Clustering:-

  1. K-means is a partitioning method that aims to divide a dataset into K distinct, non-overlapping clusters. It is a centroid-based approach, where the data points are assigned to the cluster with the nearest centroid.
  2. To have an improved comprehension of medoids, we may compare them to the core points in K-Means clustering.
  3. The relationship between averages and middle values in a list is comparable to the relationship between medoids and center points.
  4. But it’s important to remember that while averages and central points might not always be real data points, medians and middle values are.
  5. The primary distinction between K-Means and K-Medoids is how they arrange the data.
  6. While K-Means arranges information according to the distances between data points and central points, K-Medoids arranges data according to the distances to medoids.
  7. Since K-Medoids do not depend on center points, they are more robust and resistant to the effects of unusual data, making them an excellent choice for managing outliers.

Leave a Reply

Your email address will not be published. Required fields are marked *