Determination of data points in each cluster of K-means algorithm

2 vues (au cours des 30 derniers jours)
Haresh Kumar
Haresh Kumar le 4 Sep 2019
Réponse apportée : Adam le 4 Sep 2019
Hello,
How can I calculate the number of data points of each cluster of K-means ? I found the answer of counter in python, but donot know how to use such kind of commond in MATLAB. I am finding clusters using this code.
[idx,C]
=kmeans(score,3);
figure
gscatter(score(:,1),score(:,2),idx,'bgm')
hold on
plot(C(:,1),C(:,2),'kx', 'MarkerSize',25)
Br,
Haresh Kumar

Réponses (1)

Adam
Adam le 4 Sep 2019
accumarray( idx, 1 );

Catégories

En savoir plus sur Statistics and Machine Learning Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by