Clustering of 1d array data set

11 views (last 30 days)
Abhishek Mani Shukla
Abhishek Mani Shukla on 5 Apr 2021
Can we use dBscan clustering algorthim for 1d array mixed data set

Answers (1)

Aditya Patil
Aditya Patil on 8 Apr 2021
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 Comment
Abhishek Mani Shukla
Abhishek Mani Shukla on 8 Apr 2021
In our case for 1d array using dbscan gives only single cluster while the data set is mixing of two cluster.

Sign in to comment.

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!