Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10183 was 10183, checked in by rstoll, 10 years ago

Switched from columnIndex to variableName

File size: 696 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    T GetMin<T>(string variableName) where T : IComparable<T>;
13    T GetMax<T>(string variableName) where T : IComparable<T>;
14    double GetMedian(string variableName);
15    double GetAverage(string variableName);
16    T GetMostCommonValue<T>(string variableName);
17    double GetStandardDeviation(string variableName);
18    int GetDifferentValuesCount<T>(string variableName);
19  }
20}
Note: See TracBrowser for help on using the repository browser.