Changeset 9731
- Timestamp:
- 07/22/13 12:36:50 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views-3.3.csproj
r9730 r9731 38 38 </PropertyGroup> 39 39 <ItemGroup> 40 <Reference Include="Accord">41 <HintPath>libs\Accord.dll</HintPath>42 </Reference>43 <Reference Include="Accord.Math">44 <HintPath>libs\Accord.Math.dll</HintPath>45 </Reference>46 <Reference Include="Accord.Statistics">47 <HintPath>libs\Accord.Statistics.dll</HintPath>48 </Reference>49 <Reference Include="AForge">50 <HintPath>libs\AForge.dll</HintPath>51 </Reference>52 <Reference Include="AForge.Math">53 <HintPath>libs\AForge.Math.dll</HintPath>54 </Reference>55 40 <Reference Include="ALGLIB-3.6.0, Version=3.6.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 56 41 <Private>False</Private> -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/ParameterInfluenceView.cs
r9198 r9731 25 25 using System.Linq; 26 26 using System.Windows.Forms; 27 using Accord.Statistics.Testing;27 using HeuristicLab.Analysis.AlgorithmBehavior.Analyzers; 28 28 using HeuristicLab.Core.Views; 29 29 using HeuristicLab.Data; … … 260 260 261 261 if (results.Count() > 1) { 262 OneWayAnova owAnova = new OneWayAnova(results.ToArray());263 dt[i, j] = owAnova.Table.First().Significance.PValue.ToString();262 double pval = KruskalWallis.Test(results.ToArray()); 263 dt[i, j] = pval.ToString(); 264 264 } else { 265 265 dt[i, j] = string.Empty;
Note: See TracChangeset
for help on using the changeset viewer.