Example #1
0
 public Statistics(string method_, Results results_)
 {
     method = method_;
     results = results_;
     this.updateAll();
     this.autocomputeThresh();
 }
Example #2
0
 /// <summary>
 /// create DET curve graph
 /// </summary>
 /// <param name="results"></param>
 /// <returns></returns>
 public GraphPane createDETGraph(BIO.Framework.Core.Evaluation.Results.Results results)
 {
     throw new NotImplementedException();
 }
Example #3
0
 public void merge(Results other)
 {
     foreach (Result r in other.getResultsList()) {
         this.addResult(r);
     }
 }