Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticsLogic.cs @ 10374

Last change on this file since 10374 was 10374, checked in by rstoll, 10 years ago
  • StatisticsView values added
File size: 848 bytes
Line 
1using System;
2
3namespace HeuristicLab.DataPreprocessing {
4  public interface IStatisticsLogic {
5
6    int GetColumnCount();
7    int GetRowCount();
8    int GetNumericColumnCount();
9    int GetNominalColumnCount();
10    int GetMissingValueCount();
11    int GetMissingValueCount(int columnIndex);
12    int GetRowMissingValueCount(int rowIndex);
13    T GetMin<T>(int columnIndex) where T : IComparable<T>;
14    T GetMax<T>(int columnIndex) where T : IComparable<T>;
15    double GetMedian(int columnIndex);
16    double GetAverage(int columnIndex);
17    double GetStandardDeviation(int columnIndex);
18    double GetVariance(int columnIndex);
19    T GetMostCommonValue<T>(int columnIndex);
20    int GetDifferentValuesCount<T>(int columnIndex);
21
22    bool IsType<T>(int columnIndex);
23    string GetColumnTypeAsString(int columnIndex);
24  }
25}
Note: See TracBrowser for help on using the repository browser.