dbscan clustering of xy points only returns outliers
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
AbioEngineer
am 20 Aug. 2021
Bearbeitet: the cyclist
am 20 Aug. 2021
I have an array of xy points and just want a way to determine the number of clusters. I have many sets of xy points, and all of them are approximately the same in terms of values, so I would think epsilon doesn't need to change too much.
I have tried
idx=dbscan(centers,1,3);
like they did in the example, but it only returns a vector of -1, which corresponds to outliers. I thought decreasing the epsilon would give more clusters. Using kmeans with 2 clusters gives me the below result, but I would like to separate them even more. I can see both the red and the blue clusters could each have two more. Do I just not have enough points?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/716559/image.png)
0 Kommentare
Akzeptierte Antwort
the cyclist
am 20 Aug. 2021
Bearbeitet: the cyclist
am 20 Aug. 2021
You actually need to increase epsilon, because you need a larger search radius to identify neighborhood points.
load centers
idx = dbscan(centers,50,3);
gscatter(centers(:,1),centers(:,2),idx)
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!