Density-Based Spatial Clustering of Applications with Noise
Density-Based Approach: It groups together points that are closely packed, identifying regions of high density separated by regions of low density
Does not assume that clusters have a specific shape or size, making it more flexible in identifying clusters of arbitrary shapes and sizes
No Predefined Number of Clusters
Robust to Noise and Outliers: It can identify and disregard points that do not belong to any cluster, classifying them as noise
Cluster Representation: DBSCAN represents clusters as dense regions separated by areas of low density. It does not assign each point to a single cluster but rather identifies core points, border points, and noise points based on their density and proximity to other points.
Parameter Selection: DBSCAN requires two main parameters
Steps