Free cookie consent management tool by TermsFeed Policy Generator

Changeset 11941


Ignore:
Timestamp:
02/06/15 13:41:41 (9 years ago)
Author:
ascheibe
Message:

#2308 merged r11938 into stable

Location:
stable
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Tests

  • stable/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/BonferroniHolmUnitTests.cs

    r11919 r11941  
    2828  public class BonferroniHolmUnitTest {
    2929    [TestMethod]
     30    [TestCategory("Analysis.Statistics")]
     31    [TestProperty("Time", "short")]
    3032    public void BonferroniHolmUnitTest1() {
    3133      /* example taken from
     
    5355
    5456    [TestMethod]
     57    [TestCategory("Analysis.Statistics")]
     58    [TestProperty("Time", "short")]
    5559    public void BonferroniHolmUnitTest2() {
    5660      /* example taken from
     
    7882
    7983    [TestMethod]
     84    [TestCategory("Analysis.Statistics")]
     85    [TestProperty("Time", "short")]
    8086    public void BonferroniHolmUnitTest3() {
    8187      // comparison with R's p.adjust(p, "holm") method
     
    9298
    9399    [TestMethod]
     100    [TestCategory("Analysis.Statistics")]
     101    [TestProperty("Time", "short")]
    94102    public void BonferroniHolmUnitTest4() {
    95103      // comparison with R's p.adjust(p, "holm") method
     
    106114
    107115    [TestMethod]
     116    [TestCategory("Analysis.Statistics")]
     117    [TestProperty("Time", "short")]
    108118    public void BonferroniHolmUnitTest5() {
    109119      // comparison with R's p.adjust(p, "holm") method
  • stable/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/ConfidenceIntervalsTests.cs

    r11919 r11941  
    3434
    3535    [TestMethod]
     36    [TestCategory("Analysis.Statistics")]
     37    [TestProperty("Time", "short")]
    3638    public void ConfidenceIntervalsTest1() {
    3739      var result = z.ConfidenceIntervals(0.98);
     
    4143
    4244    [TestMethod]
     45    [TestCategory("Analysis.Statistics")]
     46    [TestProperty("Time", "short")]
    4347    public void ConfidenceIntervalsTest2() {
    4448      //comparison with R's t.test(..)
     
    4953
    5054    [TestMethod]
     55    [TestCategory("Analysis.Statistics")]
     56    [TestProperty("Time", "short")]
    5157    public void ConfidenceIntervalsTest3() {
    5258      //comparison with R's t.test(..)
     
    5763
    5864    [TestMethod]
     65    [TestCategory("Analysis.Statistics")]
     66    [TestProperty("Time", "short")]
    5967    public void ConfidenceIntervalsTest4() {
    6068      //comparison with R's t.test(..)
  • stable/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/EffectSizeUnitTests.cs

    r11919 r11941  
    3232
    3333    [TestMethod]
     34    [TestCategory("Analysis.Statistics")]
     35    [TestProperty("Time", "short")]
    3436    public void CohensdTest1() {
    3537      //compared to R lsr package/cohenD(..)
     
    3941
    4042    [TestMethod]
     43    [TestCategory("Analysis.Statistics")]
     44    [TestProperty("Time", "short")]
    4145    public void CohensdTest2() {
    4246      //compared to R lsr package/cohenD(..)
     
    4650
    4751    [TestMethod]
     52    [TestCategory("Analysis.Statistics")]
     53    [TestProperty("Time", "short")]
    4854    public void HedgesGTest1() {
    4955      //compared to R effsize package/cohen.d(..,hedges.correction=TRUE)
     
    5359
    5460    [TestMethod]
     61    [TestCategory("Analysis.Statistics")]
     62    [TestProperty("Time", "short")]
    5563    public void HedgesGTest2() {
    5664      //compared to R effsize package/cohen.d(..,hedges.correction=TRUE)
  • stable/HeuristicLab.Tests/HeuristicLab.Analysis-3.3/KruskalWallisUnitTests.cs

    r11919 r11941  
    3030    //tests the sample data from R's Kruskal.Test() help page
    3131    [TestMethod]
     32    [TestCategory("Analysis.Statistics")]
     33    [TestProperty("Time", "short")]
    3234    public void KruskalWallisTest1() {
    3335      double[][] data = new double[3][];
     
    4143    //compares groups of uniformly distributed random variables
    4244    [TestMethod]
     45    [TestCategory("Analysis.Statistics")]
     46    [TestProperty("Time", "short")]
    4347    public void KruskalWallisTest2() {
    4448      double[][] data = new double[3][];
     
    6771    //compares groups of normally distributed random variables
    6872    [TestMethod]
     73    [TestCategory("Analysis.Statistics")]
     74    [TestProperty("Time", "short")]
    6975    public void KruskalWallisTest3() {
    7076      double[][] data = new double[3][];
     
    115121    //compares groups of normally and uniformly distributed random variables
    116122    [TestMethod]
     123    [TestCategory("Analysis.Statistics")]
     124    [TestProperty("Time", "short")]
    117125    public void KruskalWallisTest4() {
    118126      double[][] data = new double[3][];
     
    156164    //compares groups containing the same random variables
    157165    [TestMethod]
     166    [TestCategory("Analysis.Statistics")]
     167    [TestProperty("Time", "short")]
    158168    public void KruskalWallisTest5() {
    159169      double[][] data = new double[4][];
Note: See TracChangeset for help on using the changeset viewer.