- Timestamp:
- 04/23/14 14:04:01 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/ISearchLogic.cs
r10661 r10776 26 26 /// <summary> 27 27 /// Return the indices of the missing values where the key 28 /// correspdonds to the variable nameand the values to the row indices28 /// correspdonds to the columbn index and the values to the row indices 29 29 /// </summary> 30 30 /// <returns></returns> 31 IDictionary< string, IEnumerable<int>> GetMissingValueIndices();31 IDictionary<int, IList<int>> GetMissingValueIndices(); 32 32 33 33 /// <summary> … … 35 35 /// </summary> 36 36 /// <returns></returns> 37 I Enumerable<int> GetMissingValueIndices(int columnIndex);37 IList<int> GetMissingValueIndices(int columnIndex); 38 38 39 39 bool IsMissingValue(int columnIndex, int rowIndex);
Note: See TracChangeset
for help on using the changeset viewer.