Why do I get this message : Error using kmeans ---X must have more rows than the number of clusters.

22 visualizzazioni (ultimi 30 giorni)
Hello,
When I run a collegue script, i get this error message: Error using kmeans ---X must have more rows than the number of clusters. What are my option to solve this problem?
Thank you.
Andree

Risposta accettata

Kelly Kearney
Kelly Kearney il 15 Gen 2014
How many data points do you have? And how many clusters are you attempting to create? You can't group 4 points into 5 clusters, for example.

Più risposte (3)

Andree-Sylvie Carbonneau
Andree-Sylvie Carbonneau il 15 Gen 2014
This is the code:
ab = IM1;
nrows = size(ab,1);
ncols = size(ab,2);
ab = reshape(ab,nrows*ncols,1);
nColors = 3;
[cluster_idx cluster_center] = kmeans(ab,nColors,'distance','sqEuclidean',...
'Replicates',nColors + 1,'display','iter');
clear ab nColors

Thulfiqar Hussein
Thulfiqar Hussein il 22 Mar 2017
the value (X/K) should be integer number without fractions. for example if you have 10 objects and cluster them to 3 groups you will get 10/3 = 3.3 and this error will pop up, but if you cluster them to 2 or 5 groups there will be no problem.

Laura Hensel
Laura Hensel il 29 Feb 2020
You should also check if you have any missing values in your matrix

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by