- Timestamp:
- 11/27/13 17:10:59 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs
r10163 r10168 21 21 22 22 using System; 23 using System.Collections; 23 24 using System.Collections.Generic; 24 25 using HeuristicLab.Core; … … 30 31 public class PreprocessingData : NamedItem, IPreprocessingData { 31 32 32 public PreprocessingData(IDataAnalysisProblemData problemData) { 33 private Dictionary<string, IList> variableValues; 34 35 public PreprocessingData(IDataAnalysisProblemData problemData) 36 : base() { 37 Name = "-"; 38 foreach (var s in problemData.Dataset.VariableNames) { 39 if (problemData.Dataset.IsType<double>(s)) { 40 41 } else if (problemData.Dataset.IsType<string>(s)) { 42 43 } else if (problemData.Dataset.IsType<DateTime>(s)) { 44 45 } else { 46 throw new ArgumentException("The datatype of column " + s + "is of TODO"); 47 } 48 } 33 49 throw new NotImplementedException(); 34 50 }
Note: See TracChangeset
for help on using the changeset viewer.