- Timestamp:
- 12/18/13 13:21:20 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10221 r10236 30 30 T GetCell<T>(string variableName, int row); 31 31 void SetCell<T>(string variableName, int row, T value); 32 string GetCellAsString(string variableName, int row); 32 33 33 34 IEnumerable<T> GetValues<T>(string variableName); … … 43 44 IntRange TestPartition { get; } 44 45 45 I Enumerable<string> VariableNames { get; }46 IList<string> VariableNames { get; } 46 47 bool IsType<T>(string variableName); 47 48 … … 49 50 int Rows { get; } 50 51 51 /// <summary>52 /// Return the indices of the missing values where the key53 /// correspdonds to the variable name and the values to the row indices54 /// </summary>55 /// <returns></returns>56 IDictionary<string, IEnumerable<int>> GetMissingValueIndices();57 58 /// <summary>59 /// Return the row indices of the cells which contain a missing value60 /// </summary>61 /// <returns></returns>62 IEnumerable<int> GetMissingValueIndices(string variableName);63 64 bool IsMissingValue(string variableName, int rowIndex);65 66 52 Dataset ExportToDataset(); 67 53 }
Note: See TracChangeset
for help on using the changeset viewer.