Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/IDataSetStatisticInfo.cs @ 10148

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

Initial work for DatasetStatisticInfo

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