densityconnected
Densityconnected is a concept in density-based clustering used to describe how points relate within dense regions of a dataset. It is central to algorithms like DBSCAN and OPTICS, where clusters are formed by linking closely situated points through density-based connections. The idea is that points in a high-density region can be reached from one another via a chain of nearby points, and that a cluster corresponds to a maximal set of such density-connected points.
Formally, consider a distance threshold epsilon and a minimum points threshold MinPts. Let N_eps(p) denote the
Clusters are defined as the maximal sets of density-connected points that contain at least one core point.
Densityconnected underpins the behavior of DBSCAN, guiding how clusters grow by expanding around core points and