Clustering algorithms are used to group similar data points together. K-means clustering aims to partition data into k clusters by minimizing distances between data points and cluster centers. Hierarchical clustering builds nested clusters by merging or splitting clusters based on distance metrics. Density-based clustering identifies clusters as areas of high density separated by areas of low density, like DBScan which uses parameters of minimum points and epsilon distance.
Related topics: