Difference between individual and cumulative oobMargin of TreeBagger
Ältere Kommentare anzeigen
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 Kommentar
Andrew Newell
am 17 Jun. 2011
This has my vote for best title of the week!
Akzeptierte Antwort
Weitere Antworten (1)
K
am 21 Jun. 2011
Kategorien
Mehr zu Classification Ensembles finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!