densitetbased
Density‐based clustering is a method for discovering clusters in spatial data that are defined by high density of points rather than geometric shape. The most well known approach is DBSCAN, which groups points that have at least a minimum number of neighbours inside a given radius. Points that do not meet these density criteria are classified as noise. Other algorithms, such as OPTICS and HDBSCAN, extend the basic idea by allowing variable neighbourhood sizes or producing hierarchical cluster structures.
The core concept relies on two parameters: ε (neighbourhood distance) and MinPts (minimum number of points required
Advantages of density‐based methods are their ability to find arbitrarily shaped clusters, independence from initial conditions,
In practice, density‐based clustering is applied in spatial pattern analysis, image segmentation, anomaly detection, and geographic