Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/26/14 16:11:08 (11 years ago)
Author:
sbreuer
Message:
  • change function headers in manipulationlogic to interface datatypes
  • implemented find and replace logic
File:
1 edited

Legend:

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

    r10590 r10672  
    2727    void ReOrderToIndices(IEnumerable<int> indices);
    2828    void ReOrderToIndices(IList<Tuple<int, int>> indices);
    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);
     29    void ReplaceIndicesByAverageValue(IDictionary<int, IList<int>> cells);
     30    void ReplaceIndicesByLinearInterpolationOfNeighbours(IDictionary<int, IList<int>> cells);
     31    void ReplaceIndicesByMedianValue(IDictionary<int, IList<int>> cells);
     32    void ReplaceIndicesByMostCommonValue(IDictionary<int, IList<int>> cells);
     33    void ReplaceIndicesByRandomValue(IDictionary<int, IList<int>> cells);
     34    void ReplaceIndicesByValue(IDictionary<int, IList<int>> cells, string value);
    3435    void ReplaceIndicesByValue<T>(int columnIndex, IEnumerable<int> rowIndices, T value);
    3536    void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges);
Note: See TracChangeset for help on using the changeset viewer.