Evaluation of Clustering Algorithms
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MByk
el 25 de Jun. de 2020
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
0 comentarios
Respuesta aceptada
Kanika Gupta
el 25 de Jun. de 2020
I do not think we can use evalclusters() with k-medoids. This function supports only certain algorithms as explained in here
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Cluster Visualization and Evaluation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!