Examples of topPercentPrecision()


Examples of net.sf.collabreview.core.toolbox.Correlation.topPercentPrecision()

          "Top10Recall=%.2f, Top10Precision=%.2f, " +
          "Bad10Recall=%.2f, Bad10Precision=%.2f, " +
          "\n",
          i, filter.getPartitions().get(i).size(),
          localResults.getPearsonCorrelation(), localResults.getSpearmanCorrelation(),
          localResults.topPercentRecall(0.1), localResults.topPercentPrecision(0.1),
          localResults.badPercentRecall(0.1), localResults.badPercentPrecision(0.1)
      );
      spearman += localResults.getSpearmanCorrelation() / partitionCount;
      pearson += localResults.getPearsonCorrelation() / partitionCount;
      top20Recall += localResults.topPercentRecall(0.2) / partitionCount;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.