- Timestamp:
- 11/20/13 16:56:18 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4/Dataset.cs
r10147 r10148 225 225 } 226 226 227 public bool IsType<T>(int columnIndex) { 228 return variableValues[variableNames[columnIndex]] is IList<T>; 229 } 230 227 231 public string GetValue(int rowIndex, int columnIndex) { 228 232 return variableValues[variableNames[columnIndex]][rowIndex].ToString(); -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IDataset.cs
r10145 r10148 35 35 IEnumerable<double> GetDoubleValues(string variableName, IEnumerable<int> rows); 36 36 ReadOnlyCollection<double> GetReadOnlyDoubleValues(string variableName); 37 38 bool IsType<T>(int columnIndex); 37 39 } 38 40 }
Note: See TracChangeset
for help on using the changeset viewer.