Clustering of 1d array data set

조회 수: 2 (최근 30일)
Abhishek Mani Shukla
Abhishek Mani Shukla 2021년 4월 5일
댓글: Abhishek Mani Shukla 2021년 4월 8일
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
Abhishek Mani Shukla 2021년 4월 8일
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