Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10244 was 10216, checked in by rstoll, 11 years ago

Exchanged own median, standard deviation implementation with the one in the common lib
Added GetVariance (using common as well)

File size: 790 bytes
Line 
1using System;
2
3namespace HeuristicLab.DataPreprocessing {
4  public interface IStatisticInfo {
5
6    int GetColumnCount();
7    int GetRowCount();
8    int GetNumericColumnCount();
9    int GetNominalColumnCount();
10    int GetMissingValueCount();
11    int GetMissingValueCount(string variableName);
12    int GetRowMissingValueCount(int rowIndex);
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    double GetVariance(string variableName);
20    int GetDifferentValuesCount<T>(string variableName);
21  }
22}
Note: See TracBrowser for help on using the repository browser.