Reputation: 159
How to find the centre point of clusters of DBSCAN
clustering algorithm in sklearn
.
Upvotes: 3
Views: 8541
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