Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/04/13 14:18:42 (10 years ago)
Author:
rstoll
Message:

Added GetMissingValueIndices to IPreprocessingData since it will be used in many places
Removed columnIndex specific method from PreprocessingData

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs

    r10184 r10189  
    4646
    4747    void ExportTo(IDataAnalysisProblemData problemData);
     48
     49    /// <summary>
     50    /// Return the indices of the missing values where the key
     51    /// correspdonds to the variable name and the values to the row indices
     52    /// </summary>
     53    /// <returns></returns>
     54    IDictionary<string, IEnumerable<int>> GetMissingValueIndices();
     55
     56    /// <summary>
     57    /// Return the row indices of the cells which contain a missing value
     58    /// </summary>
     59    /// <returns></returns>
     60    IEnumerable<int> GetMissingValueIndices(string variableName);
    4861  }
    4962}
Note: See TracChangeset for help on using the changeset viewer.