Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/14 17:42:42 (10 years ago)
Author:
sbreuer
Message:
  • enhanced selection of cells
File:
1 edited

Legend:

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

    r10558 r10590  
    2727    void ReOrderToIndices(IEnumerable<int> indices);
    2828    void ReOrderToIndices(IList<Tuple<int, int>> indices);
    29     void ReplaceIndicesByAverageValue(int columnIndex, IEnumerable<int> rowIndices);
    30     void ReplaceIndicesByLinearInterpolationOfNeighbours(int columnIndex, IEnumerable<int> rowIndices);
    31     void ReplaceIndicesByMedianValue(int columnIndex, IEnumerable<int> rowIndices);
    32     void ReplaceIndicesByMostCommonValue(int columnIndex, IEnumerable<int> rowIndices);
    33     void ReplaceIndicesByRandomValue(int columnIndex, IEnumerable<int> rowIndices);
     29    void ReplaceIndicesByAverageValue(Dictionary<int, List<int>> cells);
     30    void ReplaceIndicesByLinearInterpolationOfNeighbours(Dictionary<int, List<int>> cells);
     31    void ReplaceIndicesByMedianValue(Dictionary<int, List<int>> cells);
     32    void ReplaceIndicesByMostCommonValue(Dictionary<int, List<int>> cells);
     33    void ReplaceIndicesByRandomValue(Dictionary<int, List<int>> cells);
    3434    void ReplaceIndicesByValue<T>(int columnIndex, IEnumerable<int> rowIndices, T value);
    3535    void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges);
Note: See TracChangeset for help on using the changeset viewer.