Graph based clustering represents objects as nodes in a graph and connects them with branches weighted by their distance. It uses hierarchical methods like: (1) determining a minimal spanning tree and (2) iteratively deleting branches to form clusters. Density based clustering like DBSCAN defines clusters as areas of high density connected by density-reachability. DBSCAN uses parameters Eps and MinPts to identify core points within clusters.