Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/21/13 11:55:23 (11 years ago)
Author:
ascheibe
Message:

#1886

  • fixed a bug in the ResultCorrelationView
  • added sample size determination by estimating means, Cohen's D and Hedges' G
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/ResultCorrelationView.cs

    r9210 r9328  
    162162        var resultVals = runs.Where(x => x.Results.ContainsKey(resultName)).Where(x => x.Results[resultName] is DoubleValue).Select(x => ((DoubleValue)x.Results[resultName]).Value);
    163163
    164         if (resultVals.Contains(double.NaN) || resultRowVals.Contains(double.NaN)) {
     164        if (resultVals.Contains(double.NaN)
     165          || resultRowVals.Contains(double.NaN)
     166          || resultVals.Contains(double.NegativeInfinity)
     167          || resultVals.Contains(double.PositiveInfinity)
     168          || resultRowVals.Contains(double.NegativeInfinity)
     169          || resultRowVals.Contains(double.PositiveInfinity)) {
    165170          dt[j, 0] = "X";
    166171          dt[j++, 1] = "X";
Note: See TracChangeset for help on using the changeset viewer.