Difference between individual and cumulative oobMargin of TreeBagger
Show older comments
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 Comment
Andrew Newell
on 17 Jun 2011
This has my vote for best title of the week!
Accepted Answer
More Answers (1)
K
on 21 Jun 2011
Categories
Find more on Classification Ensembles in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!