Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs @ 10535

Last change on this file since 10535 was 10535, checked in by rstoll, 10 years ago
  • Renamed reOrderToIndices to ReOrderToIndices
File size: 878 bytes
Line 
1using System;
2using System.Collections.Generic;
3namespace HeuristicLab.DataPreprocessing {
4  public interface IManipulationLogic {
5    void ReOrderToIndices(IEnumerable<int> indices);
6    void ReOrderToIndices(IList<Tuple<int, int>> indices);
7    void ReplaceIndicesByAverageValue(int columnIndex, IEnumerable<int> rowIndices);
8    void ReplaceIndicesByLinearInterpolationOfNeighbours(int columnIndex, IEnumerable<int> rowIndices);
9    void ReplaceIndicesByMedianValue(int columnIndex, IEnumerable<int> rowIndices);
10    void ReplaceIndicesByMostCommonValue(int columnIndex, IEnumerable<int> rowIndices);
11    void ReplaceIndicesByRandomValue(int columnIndex, IEnumerable<int> rowIndices);
12    void ReplaceIndicesByValue<T>(int columnIndex, IEnumerable<int> rowIndices, T value);
13    void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges);
14  }
15}
Note: See TracBrowser for help on using the repository browser.