// meaning, the first instance of Weka RF and first instance of FastRF
// the following instances use a different # of threads but that doesn't affect results
double testTrainRatio = 1 / (double) (numFolds - 1);
PairedStatsCorrected pscAuc = new PairedStatsCorrected(0.05, testTrainRatio);
pscAuc.add(aucScore[0], aucScore[1]);
pscAuc.calculateDerived();
PairedStatsCorrected pscAccy = new PairedStatsCorrected(0.05, testTrainRatio);
pscAccy.add(accyScore[0], accyScore[1]);
pscAccy.calculateDerived();
PairedStatsCorrected pscTime = new PairedStatsCorrected(0.05, testTrainRatio);
pscTime.add(timeScore[0], timeScore[1]);