Rev | Line | |
---|
[10246] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | namespace 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.