Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4037 for trunk


Ignore:
Timestamp:
07/15/10 13:20:57 (14 years ago)
Author:
mkommend
Message:

corrected namespace of RunCollectionVariableImpactView and changed test direction (ticket #1011)

Location:
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/RunCollectionVariableImpactView.Designer.cs

    r3975 r4037  
    2020#endregion
    2121
    22 namespace HeuristicLab.Optimization.Views {
     22namespace HeuristicLab.Problems.DataAnalysis.Views {
    2323  partial class RunCollectionVariableImpactView {
    2424    /// <summary>
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/RunCollectionVariableImpactView.cs

    r4010 r4037  
    3434using HeuristicLab.Data;
    3535using alglib;
     36using HeuristicLab.Optimization;
    3637
    37 namespace HeuristicLab.Optimization.Views {
     38namespace HeuristicLab.Problems.DataAnalysis.Views {
    3839  [Content(typeof(RunCollection), false)]
    3940  [View("RunCollection Variable Impact View")]
     
    8990                                      from variableName in varImpact.RowNames
    9091                                      select variableName).Distinct().ToList();
    91         List<string> statictics = new List<string> { "Mean", "Median", "StdDev", "Significance Mean>0", "Significance Median>0" };
     92        List<string> statictics = new List<string> { "Mean", "Median", "StdDev", "pValue Mean<0", "pValue Median<0" };
    9293        List<string> columnNames = runsWithVariables.Select(r => r.Name).ToList();
    9394        columnNames.AddRange(statictics);
     
    118119          double[] impactsArray = impacts.ToArray();
    119120          studentttests.studentttest1(ref impactsArray, impactsArray.Length, 0, ref bothTails, ref leftTail, ref rightTail);
    120           matrix[variableIndex, runs + 3] = leftTail;
    121           wsr.wilcoxonsignedranktest(impacts.ToArray(), impactsArray.Length, 0, ref bothTails, ref leftTail, ref rightTail);
    122           matrix[variableIndex, runs + 4] = leftTail;
     121          matrix[variableIndex, runs + 3] = rightTail;
     122          wsr.wilcoxonsignedranktest(impactsArray, impactsArray.Length, 0, ref bothTails, ref leftTail, ref rightTail);
     123          matrix[variableIndex, runs + 4] = rightTail;
    123124        }
    124125      }
Note: See TracChangeset for help on using the changeset viewer.