1

What is the difference between DBSCAN and Kernel Density Estimation

1 Answers1

0

DBSCAN algorithm – density-based spatial clustering of applications with noise. This algorithm uses a density-based notion of the cluster and the key idea is that for each point of a cluster the neighborhood of a given radius has to contain at least a minimum number of points.

Kernel Density Estimation

Kernel density estimation is a really useful statistical tool with an intimidating name. Often shortened to KDE, it’s a technique that lets you create a smooth curve given a set of data.

This can be useful if you want to visualize just the “shape” of some data, as a kind of continuous replacement for the discrete histogram. It can also be used to generate points that look like they came from a certain dataset - this behavior can power simple simulations, where simulated objects are modeled off of real data.

Applications of kernel density estimation