- Timestamp:
- 03/26/14 16:11:08 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs
r10590 r10672 27 27 void ReOrderToIndices(IEnumerable<int> indices); 28 28 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); 34 35 void ReplaceIndicesByValue<T>(int columnIndex, IEnumerable<int> rowIndices, T value); 35 36 void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges);
Note: See TracChangeset
for help on using the changeset viewer.