Changeset 8861 for trunk/sources/HeuristicLab.Problems.DataAnalysis
- Timestamp:
- 10/30/12 13:33:10 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4
- Files:
-
- 1 added
- 2 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/HeuristicLab.Problems.DataAnalysis-3.4.csproj
r8833 r8861 164 164 <Compile Include="Interfaces\TimeSeriesPrognosis\ITimeSeriesPrognosisSolution.cs" /> 165 165 <Compile Include="OnlineCalculators\AutoCorrelationCalculator.cs" /> 166 <Compile Include="OnlineCalculators\DependencyCalculator\HoeffdingsDependenceCalculator.cs" /> 167 <Compile Include="OnlineCalculators\DependencyCalculator\PearsonsRDependenceCalculator.cs" /> 168 <Compile Include="OnlineCalculators\DependencyCalculator\PearsonsRSquaredDependenceCalculator.cs" /> 169 <Compile Include="OnlineCalculators\DependencyCalculator\SpearmansRankCorrelationCoefficientCalculator.cs" /> 166 170 <Compile Include="OnlineCalculators\OnlineBoundedMeanSquaredErrorCalculator.cs" /> 167 <Compile Include="OnlineCalculators\HoeffdingsDependenceCalculator.cs" />168 171 <Compile Include="OnlineCalculators\OnlineDirectionalSymmetryCalculator.cs" /> 169 172 <Compile Include="OnlineCalculators\OnlineMaxAbsoluteErrorCalculator.cs" /> … … 207 210 <Compile Include="OnlineCalculators\OnlineTheilsUStatisticCalculator.cs" /> 208 211 <Compile Include="OnlineCalculators\OnlineWeightedDirectionalSymmetryCalculator.cs" /> 209 <Compile Include="OnlineCalculators\PearsonsRDependenceCalculator.cs" />210 <Compile Include="OnlineCalculators\PearsonsRSquaredDependenceCalculator.cs" />211 <Compile Include="OnlineCalculators\SpearmansRankCorrelationCoefficientCalculator.cs" />212 212 <Compile Include="Plugin.cs" /> 213 213 <Compile Include="Implementation\Classification\ThresholdCalculators\AccuracyMaximizationThresholdCalculator.cs" /> -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDependencyCalculator.cs
r8833 r8861 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Data;24 23 25 24 namespace HeuristicLab.Problems.DataAnalysis { 26 25 public interface IDependencyCalculator { 27 DoubleRange Interval { get; } 26 double Maximum { get; } 27 double Minimum { get; } 28 28 string Name { get; } 29 29 -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/DependencyCalculator/HoeffdingsDependenceCalculator.cs
r8853 r8861 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HeuristicLab.Data;26 25 27 26 namespace HeuristicLab.Problems.DataAnalysis { 28 27 public class HoeffdingsDependenceCalculator : IDependencyCalculator { 29 28 30 public DoubleRange Interval { get { return new DoubleRange(1.0, -0.5); } } 29 public double Maximum { get { return 1.0; } } 30 31 public double Minimum { get { return -0.5; } } 31 32 32 33 public string Name { get { return "Hoeffdings Dependence"; } } -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/DependencyCalculator/PearsonsRDependenceCalculator.cs
r8853 r8861 22 22 using System; 23 23 using System.Collections.Generic; 24 using HeuristicLab.Data;25 24 26 25 namespace HeuristicLab.Problems.DataAnalysis { 27 26 public class PearsonsRDependenceCalculator : IDependencyCalculator { 28 27 29 public DoubleRange Interval { get { return new DoubleRange(1.0, -1.0); } } 28 public double Maximum { get { return 1.0; } } 29 30 public double Minimum { get { return -1.0; } } 30 31 31 32 public string Name { get { return "Pearsons R"; } } -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/DependencyCalculator/PearsonsRSquaredDependenceCalculator.cs
r8853 r8861 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Data;24 23 25 24 namespace HeuristicLab.Problems.DataAnalysis { 26 25 public class PearsonsRSquaredDependenceCalculator : IDependencyCalculator { 27 26 28 public DoubleRange Interval { get { return new DoubleRange(1.0, 0.0); } } 27 public double Maximum { get { return 1.0; } } 28 29 public double Minimum { get { return 0.0; } } 29 30 30 31 public string Name { get { return "Pearsons R Squared"; } } -
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/OnlineCalculators/DependencyCalculator/SpearmansRankCorrelationCoefficientCalculator.cs
r8853 r8861 22 22 using System.Collections.Generic; 23 23 using System.Linq; 24 using HeuristicLab.Data;25 24 26 25 namespace HeuristicLab.Problems.DataAnalysis { 27 26 public class SpearmansRankCorrelationCoefficientCalculator : IDependencyCalculator { 28 27 29 public DoubleRange Interval { get { return new DoubleRange(1.0, -1.0); } } 28 public double Maximum { get { return 1.0; } } 29 30 public double Minimum { get { return -1.0; } } 30 31 31 32 public string Name { get { return "Spearmans Rank"; } }
Note: See TracChangeset
for help on using the changeset viewer.