Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 10179 was 10179, checked in by sbreuer, 10 years ago
  • Implemented GetDifferentValueCount
File size: 680 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    T GetMostCommonValue<T>(int columnIndex);
17    double GetStandardDeviation(int columnIndex);
18    int GetDifferentValueCount<T>(int columnIndex);
19  }
20}
Note: See TracBrowser for help on using the repository browser.