Changeset 10161
- Timestamp:
- 11/27/13 15:30:07 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj
r10160 r10161 84 84 <DependentUpon>DataPreprocessingView.cs</DependentUpon> 85 85 </Compile> 86 <Compile Include=" DataSetStatisticInfo.cs" />87 <Compile Include="Interfaces\I DataSetStatisticInfo.cs" />86 <Compile Include="PreprocessingDataStatisticInfo.cs" /> 87 <Compile Include="Interfaces\IPreprocessingDataStatisticInfo.cs" /> 88 88 <Compile Include="Interfaces\IPreprocessingData.cs" /> 89 89 <Compile Include="Plugin.cs" /> -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingDataStatisticInfo.cs
r10159 r10161 9 9 int GetNominalColumnCount(); 10 10 int GetMissingValueCount(); 11 int GetMissingValueCount(int column Number);12 T GetMin<T>(int column Number) where T : IComparable<T>;13 T GetMax<T>(int column Number) where T : IComparable<T>;14 double GetMedian(int column Number);15 double GetAverage(int column Number);16 double GetMostCommonValue(int column Number);17 double GetStandardDeviation(int column Number);11 int GetMissingValueCount(int columnIndex); 12 T GetMin<T>(int columnIndex) where T : IComparable<T>; 13 T GetMax<T>(int columnIndex) where T : IComparable<T>; 14 double GetMedian(int columnIndex); 15 double GetAverage(int columnIndex); 16 double GetMostCommonValue(int columnIndex); 17 double GetStandardDeviation(int columnIndex); 18 18 } 19 19 }
Note: See TracChangeset
for help on using the changeset viewer.