Gap Staticstics Implementation
이전 댓글 표시
Does anyone know the reference link of matlab implementation of "Gap Statistics" mentioned in this paper.
답변 (1개)
Franck Dernoncourt
2013년 11월 3일
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);

You can also use this file exchange: http://www.mathworks.com/matlabcentral/fileexchange/37905-gap-statistics
카테고리
도움말 센터 및 File Exchange에서 Resampling Techniques에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!