Clustering of 1d array data set

5 次查看(过去 30 天)
Can we use dBscan clustering algorthim for 1d array mixed data set

回答(1 个)

Aditya Patil
Aditya Patil 2021-4-8
You can use dbscan on 1d array, as below
X = rand(100,1);
dbscan(X, 0.1, 5)
However, it might not be the most appropriate one. Depending on your requirements, kmeans/kmedoids might work better.
  1 个评论
Abhishek Mani Shukla
In our case for 1d array using dbscan gives only single cluster while the data set is mixing of two cluster.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息

产品


版本

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by