Evaluation of Clustering Algorithms

조회 수: 9 (최근 30일)
MByk
MByk 2020년 6월 25일
편집: MByk 2020년 6월 25일
I am trying to learn basics of clustering and clustering algorithms. Sorry if it is a dumb question. Is there a way to use K-Medoids with "evalclusters"? I just want to check the differences between clustering algorithms and evaluation methods.
% ... Load Dataset
CL_A = {'KMeans','Linkage','GMDistribution'};
% ... Some Calculations
for n=1:4
EvaResult = evalclusters(X,CL_A{n},'CalinskiHarabasz','KList',1:10);
subplot(1,4,n);
% ... Some Calculations
end

채택된 답변

Kanika Gupta
Kanika Gupta 2020년 6월 25일
I do not think we can use evalclusters() with k-medoids. This function supports only certain algorithms as explained in here
  댓글 수: 1
MByk
MByk 2020년 6월 25일
편집: MByk 2020년 6월 25일
I think I found a way but now I have to find a way to call other methods inside the function:
myfunc = @(X,K)(kmedoids(X,K));
EvaResult = evalclusters(X,myfunc,'CalinskiHarabasz','klist',[1:6]);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by