Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10367 was 10367, checked in by rstoll, 10 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: 794 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    T GetMostCommonValue<T>(int columnIndex);
18    double GetStandardDeviation(int columnIndex);
19    double GetVariance(int columnIndex);
20    int GetDifferentValuesCount<T>(int columnIndex);
21    bool IsType<T>(int columnIndex);
22  }
23}
Note: See TracBrowser for help on using the repository browser.