- Timestamp:
- 05/07/14 15:22:41 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs
r10811 r10820 29 29 void ShuffleToIndices(IList<System.Tuple<int, int>> indices); 30 30 void ReplaceIndicesByAverageValue(IDictionary<int, IList<int>> cells, bool considerSelection = false); 31 void ReplaceIndicesByLinearInterpolationOfNeighbours(IDictionary<int, IList<int>> cells);32 31 void ReplaceIndicesByMedianValue(IDictionary<int, IList<int>> cells, bool considerSelection = false); 33 32 void ReplaceIndicesByMostCommonValue(IDictionary<int, IList<int>> cells, bool considerSelection = false); 34 33 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); 35 36 void ReplaceIndicesByValue(IDictionary<int, IList<int>> cells, string value); 36 37 void ReplaceIndicesByValue<T>(int columnIndex, IEnumerable<int> rowIndices, T value); … … 45 46 46 47 event DataPreprocessingChangedEventHandler Changed; 48 49 47 50 } 48 51 }
Note: See TracChangeset
for help on using the changeset viewer.