Changeset 3975
- Timestamp:
- 06/29/10 15:11:20 (14 years ago)
- Location:
- trunk/sources
- Files:
-
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj
r3969 r3975 154 154 <DependentUpon>RunCollectionTabularView.cs</DependentUpon> 155 155 </Compile> 156 <Compile Include="RunCollectionVariableImpactView.cs">157 <SubType>UserControl</SubType>158 </Compile>159 <Compile Include="RunCollectionVariableImpactView.Designer.cs">160 <DependentUpon>RunCollectionVariableImpactView.cs</DependentUpon>161 </Compile>162 156 <Compile Include="RunCollectionView.cs"> 163 157 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/HeuristicLab.Problems.DataAnalysis.Views-3.3.csproj
r3916 r3975 98 98 <DependentUpon>ResultsView.cs</DependentUpon> 99 99 </Compile> 100 <Compile Include="RunCollectionVariableImpactView.cs"> 101 <SubType>UserControl</SubType> 102 </Compile> 103 <Compile Include="RunCollectionVariableImpactView.Designer.cs"> 104 <DependentUpon>RunCollectionVariableImpactView.cs</DependentUpon> 105 </Compile> 100 106 <Compile Include="SupportVectorRegressionSolutionView.cs"> 101 107 <SubType>UserControl</SubType> … … 205 211 <Project>{125D3006-67F5-48CB-913E-73C0548F17FA}</Project> 206 212 <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.3</Name> 213 </ProjectReference> 214 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\2.5.0\ALGLIB-2.5.0\ALGLIB-2.5.0.csproj"> 215 <Project>{29E4B033-1FEF-4FE1-AE17-0A9319D7C54E}</Project> 216 <Name>ALGLIB-2.5.0</Name> 207 217 </ProjectReference> 208 218 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.3\HeuristicLab.MainForm.WindowsForms-3.3.csproj"> -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/HeuristicLabProblemsDataAnalysisViewsPlugin.cs.frame
r3915 r3975 28 28 [Plugin("HeuristicLab.Problems.DataAnalysis.Views","3.3.0.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Problems.DataAnalysis.Views-3.3.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.ALGLIB","2.5.0.0")] 30 31 [PluginDependency("HeuristicLab.Collections", "3.3.0.0")] 31 32 [PluginDependency("HeuristicLab.Common", "3.3.0.0")] -
trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/RunCollectionVariableImpactView.cs
r3974 r3975 33 33 using HeuristicLab.Common; 34 34 using HeuristicLab.Data; 35 using alglib; 35 36 36 37 namespace HeuristicLab.Optimization.Views { … … 88 89 from variableName in varImpact.RowNames 89 90 select variableName).Distinct().ToList(); 91 List<string> statictics = new List<string> { "Mean", "Median", "StdDev", "Significance Mean>0", "Significance Median>0" }; 90 92 List<string> columnNames = runsWithVariables.Select(r => r.Name).ToList(); 91 columnNames.AddRange( new List<string> { "Mean", "Median", "StdDev" });93 columnNames.AddRange(statictics); 92 94 int runs = runsWithVariables.Count(); 93 95 94 matrix = new DoubleMatrix(variableNames.Count, runs + 3);96 matrix = new DoubleMatrix(variableNames.Count, runs + statictics.Count); 95 97 matrix.SortableView = true; 96 98 matrix.RowNames = variableNames; … … 113 115 matrix[variableIndex, runs + 1] = impacts.Median(); 114 116 matrix[variableIndex, runs + 2] = impacts.StandardDeviation(); 117 double leftTail = 0; double rightTail = 0; double bothTails = 0; 118 double[] impactsArray = impacts.ToArray(); 119 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; 115 123 } 116 124 }
Note: See TracChangeset
for help on using the changeset viewer.