himanshu-03 / Python-Data-Structures

A compilation of Data Structures in Python. It is a collection of Python code examples and implementations of various data structures. This repository aims to provide a comprehensive resource for understanding and utilizing different data structures efficiently in Python.
MIT License
18 stars 27 forks source link

add: DB SCAN Algorithm #86

Closed adi271001 closed 1 year ago

adi271001 commented 1 year ago

Describe the algorithm/code

DBSCAN stands for density-based spatial clustering of applications with noise. It's a density-based clustering algorithm, unlike k-means.This is a good algorithm for finding outliners in a data set. It finds arbitrarily shaped clusters based on the density of data points in different regions. It separates regions by areas of low-density so that it can detect outliers between the high-density clusters. Please assign this to me under hacktoberfest tag

Do you want to work on this feature?

himanshu-03 commented 1 year ago

Hi @adi271001! 👋🏻 You can start working on this issue! Do let me know if you need any help. ✨

adi271001 commented 1 year ago

created a pull request with code