Changeset 11691 for branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestingView.cs
- Timestamp:
- 12/16/14 23:55:48 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestingView.cs
r11612 r11691 428 428 429 429 var rowNames = new string[] { "p-Value of Mann-Whitney U", "Adjusted p-Value of Mann-Whitney U", 430 "p-Value of T-Test", "Adjusted p-Value of T-Test", " Necessary Sample Size for T-Test", "Cohen's d", "Hedges' g" };430 "p-Value of T-Test", "Adjusted p-Value of T-Test", "Cohen's d", "Hedges' g" }; 431 431 432 432 DoubleMatrix pValsMatrix = new DoubleMatrix(rowNames.Length, columnNames.Count()); … … 437 437 double mwuLefttail; 438 438 double mwuRighttail; 439 double tTest Lefttail;439 double tTestBothTails; 440 440 double[] mwuPValues = new double[newData.Length]; 441 441 double[] tTestPValues = new double[newData.Length]; … … 448 448 alglib.mannwhitneyutest(data[colIndex], data[colIndex].Length, newData[i], newData[i].Length, out mwuBothtails, 449 449 out mwuLefttail, out mwuRighttail); 450 tTest Lefttail= TTest.Test(data[colIndex], newData[i]);450 tTestBothTails = TTest.Test(data[colIndex], newData[i]); 451 451 mwuPValues[i] = mwuBothtails; 452 tTestPValues[i] = tTest Lefttail;452 tTestPValues[i] = tTestBothTails; 453 453 } 454 454 } … … 463 463 pValsMatrix[2, i] = tTestPValues[i]; 464 464 pValsMatrix[3, i] = adjustedTtestPValues[i]; 465 pValsMatrix[4, i] = TTest.GetOptimalSampleSize(data[colIndex], newData[i]); 466 pValsMatrix[5, i] = SampleSizeDetermination.CalculateCohensD(data[colIndex], newData[i]); 467 pValsMatrix[6, i] = SampleSizeDetermination.CalculateHedgesG(data[colIndex], newData[i]); 465 pValsMatrix[4, i] = SampleSizeDetermination.CalculateCohensD(data[colIndex], newData[i]); 466 pValsMatrix[5, i] = SampleSizeDetermination.CalculateHedgesG(data[colIndex], newData[i]); 468 467 } 469 468 }
Note: See TracChangeset
for help on using the changeset viewer.