Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/10/09 15:21:06 (15 years ago)
Author:
abeham
Message:

Fixed a small bug in the MannWhitneyWilcoxonTest (#573)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.StatisticalAnalysis/3.2/MannWhitneyWilcoxonTestControl.cs

    r1548 r1549  
    6565      double[] p2 = ConvertStringToArray(p2TextBox);
    6666      if (p1.Length < 10 || p2.Length < 10) {
    67         MessageBox.Show("Sample size is too small to approximate, provide at least 10 samples in each population.");
    68         return;
     67        MessageBox.Show("Caution: Sample size is too small for good approximation, treat the results carefully. Provide at least 10 samples in each population.");
    6968      }
    7069      double alpha = Double.Parse(alphaTextBox.Text);
    7170      double pVal = MannWhitneyWilcoxonTest.TwoTailedTest(p1, p2);
    7271      if (pVal <= alpha) {
    73         resultLabel.Text = "The hypothesis H0 can be rejected at " + alpha.ToString() + ", the p-Value is " + pVal.ToString() + "\nThe samples are likely not to stem from the same distribution.";
     72        resultLabel.Text = "The hypothesis H0 can be rejected at " + alpha.ToString() + ", the approximated p-Value is " + pVal.ToString() + "\nThe samples are not likely to stem from the same distribution.";
    7473      } else {
    7574        resultLabel.Text = "The hypothesis H0 cannot be rejected at " + alpha.ToString();
Note: See TracChangeset for help on using the changeset viewer.