DBSCAN Clustering — Explained

Detailed theorotical explanation and scikit-learn implementation

Soner Yıldırım
Towards Data Science
7 min readApr 22, 2020

--

Clustering is a way to group a set of data points in a way that similar data points are grouped together. Therefore, clustering algorithms look for similarities or dissimilarities among data points. Clustering is an unsupervised learning method so there is no label associated with data points. The algorithm tries to find the underlying structure of the data.

--

--