Last change
on this file since 10244 was
10236,
checked in by sbreuer, 11 years ago
|
- moved missing value functionality to ISearchLogic
- created IStringConvertibleMatrix implementation and DataGridContentView
|
File size:
736 bytes
|
Line | |
---|
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>
|
---|
19 | IEnumerable<int> GetMissingValueIndices(string variableName);
|
---|
20 |
|
---|
21 | bool IsMissingValue(string variableName, int rowIndex);
|
---|
22 | }
|
---|
23 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.