Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 15:22:41 (11 years ago)
Author:
rstoll
Message:
  • Interpolation implemented
  • Smoothing fixed
  • Interpolation/Smooting menu disabled if first column is selected as well
File:
1 edited

Legend:

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

    r10811 r10820  
    2929    void ShuffleToIndices(IList<System.Tuple<int, int>> indices);
    3030    void ReplaceIndicesByAverageValue(IDictionary<int, IList<int>> cells, bool considerSelection = false);
    31     void ReplaceIndicesByLinearInterpolationOfNeighbours(IDictionary<int, IList<int>> cells);
    3231    void ReplaceIndicesByMedianValue(IDictionary<int, IList<int>> cells, bool considerSelection = false);
    3332    void ReplaceIndicesByMostCommonValue(IDictionary<int, IList<int>> cells, bool considerSelection = false);
    3433    void ReplaceIndicesByRandomValue(IDictionary<int, IList<int>> cells, bool considerSelection = false);
     34    void ReplaceIndicesByLinearInterpolationOfNeighbours(IDictionary<int, IList<int>> cells);
     35    void ReplaceIndicesBySmoothing(IDictionary<int, IList<int>> cells);
    3536    void ReplaceIndicesByValue(IDictionary<int, IList<int>> cells, string value);
    3637    void ReplaceIndicesByValue<T>(int columnIndex, IEnumerable<int> rowIndices, T value);
     
    4546
    4647    event DataPreprocessingChangedEventHandler Changed;
     48
     49
    4750  }
    4851}
Note: See TracChangeset for help on using the changeset viewer.