









Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
A lecture on density-based clustering, focusing on the DBSCAN algorithm and its parameters. It covers the basic idea of density-based clustering, the definitions of neighborhood and density, core, border, and outlier points, and the DBSCAN algorithm. It also discusses the pros and cons of DBSCAN and the method for determining the parameters Eps and MinPts.
Typology: Exams
1 / 16
This page cannot be seen from the preview
Don't miss anything!
q p^
ε ε
ε-Neighborhood of p ε-Neighborhood of q Density of p is “high” (MinPts = 4) Density of q is “low” (MinPts = 4)
categorize the objects into three exclusive groups.
Core
Border
Outlier
A point is a core point if it has more than a specified number of points (MinPts) within Eps—These are points that are at the interior of a cluster. A border point has fewer than MinPts within Eps, but is in the neighborhood of a core point. A noise point is any point that is not a core point nor a border point.
q p^
ε ε
MinPts = 4
p
q
p 2
MinPts = 7
for each o D do if o is not yet classified then if o is a core-object then collect all objects density-reachable from o and assign them to a new cluster. else assign o to NOISE
for each o D do if o is not yet classified then if o is a core-object then collect all objects density-reachable from o and assign them to a new cluster. else assign o to NOISE
Original Points (^) Clusters