Waseem Randhawa
Waseem Randhawa

Reputation: 159

How to find center points of DBSCAN clusrering in sklearn

How to find the centre point of clusters of DBSCAN clustering algorithm in sklearn.

Upvotes: 3

Views: 8541

Answers (1)

Has QUIT--Anony-Mousse
Has QUIT--Anony-Mousse

Reputation: 77454

DBSCAN doesn't have centers.

You can compute then yourself, but they may be outside of the cluster if it is not convex.

Upvotes: 10

Related Questions