Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9731


Ignore:
Timestamp:
07/22/13 12:36:50 (11 years ago)
Author:
ascheibe
Message:

#1886 cleaned up references

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  
    3838  </PropertyGroup>
    3939  <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>
    5540    <Reference Include="ALGLIB-3.6.0, Version=3.6.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    5641      <Private>False</Private>
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/ParameterInfluenceView.cs

    r9198 r9731  
    2525using System.Linq;
    2626using System.Windows.Forms;
    27 using Accord.Statistics.Testing;
     27using HeuristicLab.Analysis.AlgorithmBehavior.Analyzers;
    2828using HeuristicLab.Core.Views;
    2929using HeuristicLab.Data;
     
    260260
    261261          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();
    264264          } else {
    265265            dt[i, j] = string.Empty;
Note: See TracChangeset for help on using the changeset viewer.