How to prioritize the cluster on the basis of number of data points in each cluster?
조회 수: 2 (최근 30일)
이전 댓글 표시
I want to assign a number to each cluster on the basis of data points in that.
댓글 수: 2
Image Analyst
2018년 5월 5일
It would be easier to help you if you had attached some data. All I can say is to use histogram() and assignment to reassign each cluster number based on its count.
채택된 답변
Bernhard Suhm
2018년 5월 18일
If X was your data, you could get the histogram with
h = histogram(X);
and then compare the centroids of your clusters to h.BinEdges, and the corresponding h.Values will provide you with the count of each cluster's bin.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!