Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingDataStatisticInfo.cs @ 10165

Last change on this file since 10165 was 10162, checked in by rstoll, 11 years ago

renaming somehow did not work as expected, here we go again

File size: 629 bytes
Line 
1
2using System;
3namespace HeuristicLab.DataPreprocessing {
4  public interface IPreprocessingDataStatisticInfo {
5
6    int GetColumnCount();
7    int GetRowCount();
8    int GetNumericColumnCount();
9    int GetNominalColumnCount();
10    int GetMissingValueCount();
11    int GetMissingValueCount(int columnIndex);
12    T GetMin<T>(int columnIndex) where T : IComparable<T>;
13    T GetMax<T>(int columnIndex) where T : IComparable<T>;
14    double GetMedian(int columnIndex);
15    double GetAverage(int columnIndex);
16    double GetMostCommonValue(int columnIndex);
17    double GetStandardDeviation(int columnIndex);
18  }
19}
Note: See TracBrowser for help on using the repository browser.