![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/173708/image.png)
Gap Staticstics Implementation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Does anyone know the reference link of matlab implementation of "Gap Statistics" mentioned in this paper.
0 Kommentare
Antworten (1)
Franck Dernoncourt
am 3 Nov. 2013
The Statistics Toolbox implements the gap statistic as a class in the package `clustering.evaluation` since R2013b: http://www.mathworks.com/help/stats/clustering.evaluation.gapevaluationclass.html
load fisheriris;
rng('default'); % For reproducibility
eva = evalclusters(meas,'kmeans','gap','KList',[1:6])
figure;
plot(eva);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/173708/image.png)
You can also use this file exchange: http://www.mathworks.com/matlabcentral/fileexchange/37905-gap-statistics
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!