Difference between individual and cumulative oobMargin of TreeBagger
Afficher commentaires plus anciens
Why aren't the following two plots the same?
b = TreeBagger(500,X,Y,'oobpred','on');
mc = oobMargin(b,'mode','cumulative');
mi = oobMargin(b,'mode','individual');
figure; plot(mc.')
figure; plot(bsxfun(@rdivide,cumsum(mi.'),(1:500).'))
1 commentaire
Andrew Newell
le 17 Juin 2011
This has my vote for best title of the week!
Réponse acceptée
Plus de réponses (1)
K
le 21 Juin 2011
Catégories
En savoir plus sur Classification Ensembles dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!