Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10168


Ignore:
Timestamp:
11/27/13 17:10:59 (10 years ago)
Author:
tsteinre
Message:
  • intermediate commit , further work on PreprocessingData
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/PreprocessingData.cs

    r10163 r10168  
    2121
    2222using System;
     23using System.Collections;
    2324using System.Collections.Generic;
    2425using HeuristicLab.Core;
     
    3031  public class PreprocessingData : NamedItem, IPreprocessingData {
    3132
    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      }
    3349      throw new NotImplementedException();
    3450    }
Note: See TracChangeset for help on using the changeset viewer.