Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/ISearchLogic.cs @ 10236

Last change on this file since 10236 was 10236, checked in by sbreuer, 10 years ago
  • moved missing value functionality to ISearchLogic
  • created IStringConvertibleMatrix implementation and DataGridContentView
File size: 736 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace 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.