- Timestamp:
- 12/04/13 15:22:40 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10189 r10191 59 59 /// <returns></returns> 60 60 IEnumerable<int> GetMissingValueIndices(string variableName); 61 62 bool IsMissingValue(string variableName, int rowIndex); 61 63 } 62 64 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticInfo.cs
r10183 r10191 10 10 int GetMissingValueCount(); 11 11 int GetMissingValueCount(string variableName); 12 int GetRowMissingValueCount(int rowIndex); 12 13 T GetMin<T>(string variableName) where T : IComparable<T>; 13 14 T GetMax<T>(string variableName) where T : IComparable<T>;
Note: See TracChangeset
for help on using the changeset viewer.