Finding Optimal Number Of Clusters for Kmeans
79 次查看(过去 30 天)
显示 更早的评论
I want to find the number of clusters for my data for which the correlation is above .9. I know you can use a sum of squared error (SSE) scree plot but I am not sure how you create one in Matlab. Also, are there any other methods?
0 个评论
回答(2 个)
Taro Ichimura
2016-6-1
Hello,
you have 2 way to do this in MatLab, use the evalclusters() and silhouette() to find an optimal k, you can also use the elbow method (i think you can find code in matlab community) check matlab documentation for examples, and below
% example
load fisheriris
clust = zeros(size(meas,1),6);
for i=1:6
clust(:,i) = kmeans(meas,i,'emptyaction','singleton',...
'replicate',5);
end
va = evalclusters(meas,clust,'CalinskiHarabasz')
Pamudu Ranasinghe
2022-6-19
Refer "evalclusters" function
eva = evalclusters(X,'kmeans','CalinskiHarabasz','KList',1:6);
Optimal_K = eva.OptimalK;
1 个评论
Walter Roberson
2022-6-19
编辑:Walter Roberson
2022-6-23
And see https://www.mathworks.com/matlabcentral/answers/52322-how-to-determine-number-of-clusters-automatically-for-each-image-to-be-used-in-k-means-algorithm#comment_2222525 for why evalclusters is mostly arbitrary with not so much real use.
Real mathematics says that every unique point should be its own cluster.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!