Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/05/15 16:09:10 (10 years ago)
Author:
ascheibe
Message:

#2031 implemented review comments

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis.Statistics.Views/3.3/SampleSizeInfluenceView.cs

    r11705 r11914  
    333333      if (yValue.Any(x => !x.HasValue)) return;
    334334
    335       double estimatedSampleSize = SampleSizeDetermination.DetermineSampleSizeByEstimatingMeanForLargeSampleSizes(yValue.Select(x => x.Value).ToArray());
     335      double estimatedSampleSize = SampleSizeDetermination.DetermineSampleSizeByEstimatingMean(yValue.Select(x => x.Value).ToArray());
    336336      sampleSizeTextBox.Text = estimatedSampleSize.ToString();
    337337    }
Note: See TracChangeset for help on using the changeset viewer.