Last change
on this file since 10253 was
10253,
checked in by sbreuer, 11 years ago
|
- added apply sorting button to datagridcontentview with click handler
- modified sorting
|
File size:
835 bytes
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | namespace HeuristicLab.DataPreprocessing {
|
---|
4 | interface IPreprocessingDataManipulation {
|
---|
5 | void reOrderToIndices(IList<Tuple<int, int>> indices);
|
---|
6 | void ReplaceIndicesByAverageValue(string variableName, IEnumerable<int> indices);
|
---|
7 | void ReplaceIndicesByLinearInterpolationOfNeighbours(string variableName, IEnumerable<int> indices);
|
---|
8 | void ReplaceIndicesByMedianValue(string variableName, IEnumerable<int> indices);
|
---|
9 | void ReplaceIndicesByMostCommonValue(string variableName, IEnumerable<int> indices);
|
---|
10 | void ReplaceIndicesByRandomValue(string variableName, IEnumerable<int> indices);
|
---|
11 | void ReplaceIndicesByValue<T>(string variableName, IEnumerable<int> indices, T value);
|
---|
12 | void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges);
|
---|
13 | }
|
---|
14 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.