Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingDataManipulation.cs @ 10343

Last change on this file since 10343 was 10256, checked in by rstoll, 11 years ago

Fixed View error

File size: 896 bytes
RevLine 
[10246]1using System;
2using System.Collections.Generic;
3namespace HeuristicLab.DataPreprocessing {
[10256]4  public interface IPreprocessingDataManipulation {
5    void reOrderToIndices(IEnumerable<int> indices);
[10253]6    void reOrderToIndices(IList<Tuple<int, int>> indices);
[10246]7    void ReplaceIndicesByAverageValue(string variableName, IEnumerable<int> indices);
8    void ReplaceIndicesByLinearInterpolationOfNeighbours(string variableName, IEnumerable<int> indices);
9    void ReplaceIndicesByMedianValue(string variableName, IEnumerable<int> indices);
10    void ReplaceIndicesByMostCommonValue(string variableName, IEnumerable<int> indices);
11    void ReplaceIndicesByRandomValue(string variableName, IEnumerable<int> indices);
12    void ReplaceIndicesByValue<T>(string variableName, IEnumerable<int> indices, T value);
13    void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges);
14  }
15}
Note: See TracBrowser for help on using the repository browser.