Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/04/13 12:56:18 (10 years ago)
Author:
pfleck
Message:

Added indexing IPreprocessingData with variable names.
Indexing per column index is marked obsolete.

File:
1 edited

Legend:

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

    r10168 r10181  
    6868    }
    6969
    70     public IList<T> GetValues<T>(int columnIndex) {
     70    public T GetCell<T>(string variableName, int row) {
     71      throw new NotImplementedException();
     72    }
     73
     74    public void SetCell<T>(string variableName, int row, T value) {
     75      throw new NotImplementedException();
     76    }
     77
     78    public IEnumerable<T> GetValues<T>(int columnIndex) {
     79      throw new NotImplementedException();
     80    }
     81
     82    public IEnumerable<T> GetValues<T>(string variableName) {
    7183      throw new NotImplementedException();
    7284    }
    7385
    7486    public void SetValues<T>(int columnIndex, IEnumerable<T> values) {
     87      throw new NotImplementedException();
     88    }
     89
     90    public void SetValues<T>(string variableName, IEnumerable<T> values) {
    7591      throw new NotImplementedException();
    7692    }
     
    92108    }
    93109
    94     public IList<string> VariableNames {
     110    public void DeleteColumn(string variableName) {
     111      throw new NotImplementedException();
     112    }
     113
     114    IEnumerable<string> IPreprocessingData.VariableNames {
    95115      get { throw new NotImplementedException(); }
    96116    }
    97117
    98118    public bool IsType<T>(int columnIndex) {
     119      throw new NotImplementedException();
     120    }
     121
     122    public bool IsType<T>(string variableName) {
    99123      throw new NotImplementedException();
    100124    }
Note: See TracChangeset for help on using the changeset viewer.