Last change
on this file since 10537 was
10367,
checked in by rstoll, 11 years ago
|
- modified PreprocessingData, uses columnIndex now instead of variableName (is faster and more convenient), set variabelName based methods to Obsolete
- Already changed SearchLogic, DataGridLogic, StatisticLogic as well as PreprocessingDataManipulation
*
|
File size:
728 bytes
|
Rev | Line | |
---|
[10236] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Text;
|
---|
| 5 |
|
---|
| 6 | namespace HeuristicLab.DataPreprocessing {
|
---|
| 7 | public interface ISearchLogic {
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// Return the indices of the missing values where the key
|
---|
| 10 | /// correspdonds to the variable name and the values to the row indices
|
---|
| 11 | /// </summary>
|
---|
| 12 | /// <returns></returns>
|
---|
| 13 | IDictionary<string, IEnumerable<int>> GetMissingValueIndices();
|
---|
| 14 |
|
---|
| 15 | /// <summary>
|
---|
| 16 | /// Return the row indices of the cells which contain a missing value
|
---|
| 17 | /// </summary>
|
---|
| 18 | /// <returns></returns>
|
---|
[10367] | 19 | IEnumerable<int> GetMissingValueIndices(int columnIndex);
|
---|
[10236] | 20 |
|
---|
[10367] | 21 | bool IsMissingValue(int columnIndex, int rowIndex);
|
---|
[10236] | 22 | }
|
---|
| 23 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.