예제 #1
0
파일: Statistics.cs 프로젝트: harpener/BIO
 public Statistics(string method_, Results results_)
 {
     method = method_;
     results = results_;
     this.updateAll();
     this.autocomputeThresh();
 }
예제 #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();
 }
예제 #3
0
파일: Results.cs 프로젝트: harpener/BIO
 public void merge(Results other)
 {
     foreach (Result r in other.getResultsList()) {
         this.addResult(r);
     }
 }