- Timestamp:
- 12/04/13 12:59:23 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 4 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10180 r10182 85 85 </Compile> 86 86 <Compile Include="Implementations\PreprocessingData.cs" /> 87 <Compile Include=" StatisticInfo.cs" />87 <Compile Include="Implementations\StatisticInfo.cs" /> 88 88 <Compile Include="Interfaces\IStatisticInfo.cs" /> 89 89 <Compile Include="Interfaces\IPreprocessingData.cs" /> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10181 r10182 24 24 using System.Collections.Generic; 25 25 using HeuristicLab.Core; 26 using HeuristicLab.DataPreprocessing .Interfaces;26 using HeuristicLab.DataPreprocessing; 27 27 using HeuristicLab.Problems.DataAnalysis; 28 28 29 namespace HeuristicLab.DataPreprocessing .Implementation{29 namespace HeuristicLab.DataPreprocessing { 30 30 [Item("PreprocessingData", "Represents data used for preprocessing.")] 31 31 public class PreprocessingData : NamedItem, IPreprocessingData { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticInfo.cs
r10181 r10182 1 1 using System; 2 2 using System.Linq; 3 using HeuristicLab.DataPreprocessing .Interfaces;3 using HeuristicLab.DataPreprocessing; 4 4 5 5 namespace HeuristicLab.DataPreprocessing { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10181 r10182 25 25 using HeuristicLab.Problems.DataAnalysis; 26 26 27 namespace HeuristicLab.DataPreprocessing .Interfaces{27 namespace HeuristicLab.DataPreprocessing { 28 28 29 29 public interface IPreprocessingData : INamedItem { -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticInfo.cs
r10180 r10182 1 2 using System; 1 using System; 2 3 3 namespace HeuristicLab.DataPreprocessing { 4 4 public interface IStatisticInfo { … … 14 14 double GetMedian(int columnIndex); 15 15 double GetAverage(int columnIndex); 16 double GetMostCommonValue(int columnIndex);16 T GetMostCommonValue<T>(int columnIndex); 17 17 double GetStandardDeviation(int columnIndex); 18 publicint GetDifferentValuesCount<T>(int columnIndex);18 int GetDifferentValuesCount<T>(int columnIndex); 19 19 } 20 20 }
Note: See TracChangeset
for help on using the changeset viewer.