Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticInfo.cs @ 10204

Last change on this file since 10204 was 10191, checked in by rstoll, 11 years ago
  • GetRowMissingValueCount implemented
  • IsMissingValue for cell implemented
File size: 744 bytes
RevLine 
[10182]1using System;
2
[10148]3namespace HeuristicLab.DataPreprocessing {
[10180]4  public interface IStatisticInfo {
[10148]5
6    int GetColumnCount();
7    int GetRowCount();
8    int GetNumericColumnCount();
9    int GetNominalColumnCount();
10    int GetMissingValueCount();
[10183]11    int GetMissingValueCount(string variableName);
[10191]12    int GetRowMissingValueCount(int rowIndex);
[10183]13    T GetMin<T>(string variableName) where T : IComparable<T>;
14    T GetMax<T>(string variableName) where T : IComparable<T>;
15    double GetMedian(string variableName);
16    double GetAverage(string variableName);
17    T GetMostCommonValue<T>(string variableName);
18    double GetStandardDeviation(string variableName);
19    int GetDifferentValuesCount<T>(string variableName);
[10148]20  }
21}
Note: See TracBrowser for help on using the repository browser.