Hi Bob,
I appreciate your answers and efforts. Thanks.
I’ve four questions:
1. I want to combine classfiers according to SUM rule. Is it possible in PRTools?
2. I’ve used bagging fusion:
% dstr --> 2925 by 1 dataset with 2 classes: [2538 387]
% dste --> 325 by 1 dataset with 2 classes: [282 43]
wbase1 = stumpc([],'maxcrit',5);
wbase2 = weakc([],0.2,5,1);
wbase = [wbase1 wbase2];
w = baggingc(dstr,wbase,100); % w-->Mean combiner, 1 to 2 trained mapping --> fixedcc.
err = dste*w*testc;
I get an error value of 0.0615. Is this use correct for bagging?
3.Maybe I’m wrong with the terminology. But I want to ask that can I use min, max, median, product combining operators with bagging?
4. There are three methods of ensembling of classifiers(at least I know). These are bagging, random subspace and rotation forest methods. Which one is common in PRTools? Which one outperforms the others?
Regards.

