- Timestamp:
- 07/15/10 13:20:57 (14 years ago)
- 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 20 20 #endregion 21 21 22 namespace HeuristicLab. Optimization.Views {22 namespace HeuristicLab.Problems.DataAnalysis.Views { 23 23 partial class RunCollectionVariableImpactView { 24 24 /// <summary> -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/RunCollectionVariableImpactView.cs
r4010 r4037 34 34 using HeuristicLab.Data; 35 35 using alglib; 36 using HeuristicLab.Optimization; 36 37 37 namespace HeuristicLab. Optimization.Views {38 namespace HeuristicLab.Problems.DataAnalysis.Views { 38 39 [Content(typeof(RunCollection), false)] 39 40 [View("RunCollection Variable Impact View")] … … 89 90 from variableName in varImpact.RowNames 90 91 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" }; 92 93 List<string> columnNames = runsWithVariables.Select(r => r.Name).ToList(); 93 94 columnNames.AddRange(statictics); … … 118 119 double[] impactsArray = impacts.ToArray(); 119 120 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; 123 124 } 124 125 }
Note: See TracChangeset
for help on using the changeset viewer.