Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 13:21:20 (11 years ago)
Author:
sbreuer
Message:
  • moved missing value functionality to ISearchLogic
  • created IStringConvertibleMatrix implementation and DataGridContentView
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  
    3030    T GetCell<T>(string variableName, int row);
    3131    void SetCell<T>(string variableName, int row, T value);
     32    string GetCellAsString(string variableName, int row);
    3233
    3334    IEnumerable<T> GetValues<T>(string variableName);
     
    4344    IntRange TestPartition { get; }
    4445
    45     IEnumerable<string> VariableNames { get; }
     46    IList<string> VariableNames { get; }
    4647    bool IsType<T>(string variableName);
    4748
     
    4950    int Rows { get; }
    5051
    51     /// <summary>
    52     /// Return the indices of the missing values where the key
    53     /// correspdonds to the variable name and the values to the row indices
    54     /// </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 value
    60     /// </summary>
    61     /// <returns></returns>
    62     IEnumerable<int> GetMissingValueIndices(string variableName);
    63 
    64     bool IsMissingValue(string variableName, int rowIndex);
    65 
    6652    Dataset ExportToDataset();
    6753  }
Note: See TracChangeset for help on using the changeset viewer.