Changeset 11941
- Timestamp:
- 02/06/15 13:41:41 (10 years ago)
- Location:
- stable
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 11938
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Tests
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Tests merged: 11938
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/BonferroniHolmUnitTests.cs
r11919 r11941 28 28 public class BonferroniHolmUnitTest { 29 29 [TestMethod] 30 [TestCategory("Analysis.Statistics")] 31 [TestProperty("Time", "short")] 30 32 public void BonferroniHolmUnitTest1() { 31 33 /* example taken from … … 53 55 54 56 [TestMethod] 57 [TestCategory("Analysis.Statistics")] 58 [TestProperty("Time", "short")] 55 59 public void BonferroniHolmUnitTest2() { 56 60 /* example taken from … … 78 82 79 83 [TestMethod] 84 [TestCategory("Analysis.Statistics")] 85 [TestProperty("Time", "short")] 80 86 public void BonferroniHolmUnitTest3() { 81 87 // comparison with R's p.adjust(p, "holm") method … … 92 98 93 99 [TestMethod] 100 [TestCategory("Analysis.Statistics")] 101 [TestProperty("Time", "short")] 94 102 public void BonferroniHolmUnitTest4() { 95 103 // comparison with R's p.adjust(p, "holm") method … … 106 114 107 115 [TestMethod] 116 [TestCategory("Analysis.Statistics")] 117 [TestProperty("Time", "short")] 108 118 public void BonferroniHolmUnitTest5() { 109 119 // comparison with R's p.adjust(p, "holm") method -
stable/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/ConfidenceIntervalsTests.cs
r11919 r11941 34 34 35 35 [TestMethod] 36 [TestCategory("Analysis.Statistics")] 37 [TestProperty("Time", "short")] 36 38 public void ConfidenceIntervalsTest1() { 37 39 var result = z.ConfidenceIntervals(0.98); … … 41 43 42 44 [TestMethod] 45 [TestCategory("Analysis.Statistics")] 46 [TestProperty("Time", "short")] 43 47 public void ConfidenceIntervalsTest2() { 44 48 //comparison with R's t.test(..) … … 49 53 50 54 [TestMethod] 55 [TestCategory("Analysis.Statistics")] 56 [TestProperty("Time", "short")] 51 57 public void ConfidenceIntervalsTest3() { 52 58 //comparison with R's t.test(..) … … 57 63 58 64 [TestMethod] 65 [TestCategory("Analysis.Statistics")] 66 [TestProperty("Time", "short")] 59 67 public void ConfidenceIntervalsTest4() { 60 68 //comparison with R's t.test(..) -
stable/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/EffectSizeUnitTests.cs
r11919 r11941 32 32 33 33 [TestMethod] 34 [TestCategory("Analysis.Statistics")] 35 [TestProperty("Time", "short")] 34 36 public void CohensdTest1() { 35 37 //compared to R lsr package/cohenD(..) … … 39 41 40 42 [TestMethod] 43 [TestCategory("Analysis.Statistics")] 44 [TestProperty("Time", "short")] 41 45 public void CohensdTest2() { 42 46 //compared to R lsr package/cohenD(..) … … 46 50 47 51 [TestMethod] 52 [TestCategory("Analysis.Statistics")] 53 [TestProperty("Time", "short")] 48 54 public void HedgesGTest1() { 49 55 //compared to R effsize package/cohen.d(..,hedges.correction=TRUE) … … 53 59 54 60 [TestMethod] 61 [TestCategory("Analysis.Statistics")] 62 [TestProperty("Time", "short")] 55 63 public void HedgesGTest2() { 56 64 //compared to R effsize package/cohen.d(..,hedges.correction=TRUE) -
stable/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/KruskalWallisUnitTests.cs
r11919 r11941 30 30 //tests the sample data from R's Kruskal.Test() help page 31 31 [TestMethod] 32 [TestCategory("Analysis.Statistics")] 33 [TestProperty("Time", "short")] 32 34 public void KruskalWallisTest1() { 33 35 double[][] data = new double[3][]; … … 41 43 //compares groups of uniformly distributed random variables 42 44 [TestMethod] 45 [TestCategory("Analysis.Statistics")] 46 [TestProperty("Time", "short")] 43 47 public void KruskalWallisTest2() { 44 48 double[][] data = new double[3][]; … … 67 71 //compares groups of normally distributed random variables 68 72 [TestMethod] 73 [TestCategory("Analysis.Statistics")] 74 [TestProperty("Time", "short")] 69 75 public void KruskalWallisTest3() { 70 76 double[][] data = new double[3][]; … … 115 121 //compares groups of normally and uniformly distributed random variables 116 122 [TestMethod] 123 [TestCategory("Analysis.Statistics")] 124 [TestProperty("Time", "short")] 117 125 public void KruskalWallisTest4() { 118 126 double[][] data = new double[3][]; … … 156 164 //compares groups containing the same random variables 157 165 [TestMethod] 166 [TestCategory("Analysis.Statistics")] 167 [TestProperty("Time", "short")] 158 168 public void KruskalWallisTest5() { 159 169 double[][] data = new double[4][];
Note: See TracChangeset
for help on using the changeset viewer.