Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/14 14:04:01 (10 years ago)
Author:
rstoll
Message:
  • Missing values manipulations
File:
1 edited

Legend:

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

    r10661 r10776  
    2626    /// <summary>
    2727    /// Return the indices of the missing values where the key
    28     /// correspdonds to the variable name and the values to the row indices
     28    /// correspdonds to the columbn index and the values to the row indices
    2929    /// </summary>
    3030    /// <returns></returns>
    31     IDictionary<string, IEnumerable<int>> GetMissingValueIndices();
     31    IDictionary<int, IList<int>> GetMissingValueIndices();
    3232
    3333    /// <summary>
     
    3535    /// </summary>
    3636    /// <returns></returns>
    37     IEnumerable<int> GetMissingValueIndices(int columnIndex);
     37    IList<int> GetMissingValueIndices(int columnIndex);
    3838
    3939    bool IsMissingValue(int columnIndex, int rowIndex);
Note: See TracChangeset for help on using the changeset viewer.