DBSCAN (DENSITY BASED SPATIAL CLUSTERING OF APPLICATION WITH NOISE)
DEFINITIONS
Define ϵ as the radius of an hypersphere and a minPoints threshold value
-
CORE
a point with n>minPoints points inside is hypersphere of ϵ radius
-
BORDER
a point with n<minPoints points inside is hypersphere of ϵ radius
-
NEIGHBORHOOD
two points are in neighborhood with each other when they are inside each hypersphere
-
DIRECT DENSITY REACHABILITY
a point p is in direct density reachable with a point q when q is core and p is in q neighborhood
-
DENSITY REACHABILITY
a point p is in density reachable with a point q when and p are connected by a series of direct density reachable points qn
-
DENSITY CONNECTION
a point p is density connected to point q if there is a point s such that p and q are density reachable from s
ALGORITHM
PARAMETERS TO TUNE
ϵ and minPoints are the parameter that need to be tuned, a good value for minPoints can be 2∗D where D is the number of dimensions
PREVIOUS