Gap Staticstics Implementation

2 visualizaciones (últimos 30 días)
Arunachalam
Arunachalam el 5 de Jun. de 2011
Respondida: Franck Dernoncourt el 3 de Nov. de 2013
Does anyone know the reference link of matlab implementation of "Gap Statistics" mentioned in this paper.

Respuestas (1)

Franck Dernoncourt
Franck Dernoncourt el 3 de Nov. de 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);

Community Treasure Hunt

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

Start Hunting!

Translated by