Changeset 10809 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticsLogic.cs
- Timestamp:
- 05/07/14 12:47:54 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticsLogic.cs
r10551 r10809 33 33 int GetRowMissingValueCount(int rowIndex); 34 34 35 T GetMin<T>(int columnIndex ) where T : IComparable<T>;36 T GetMax<T>(int columnIndex ) where T : IComparable<T>;35 T GetMin<T>(int columnIndex, bool considerSelection) where T : IComparable<T>; 36 T GetMax<T>(int columnIndex, bool considerSelection) where T : IComparable<T>; 37 37 38 double GetMedian(int columnIndex );39 double GetAverage(int columnIndex );40 DateTime GetMedianDateTime(int columnIndex );41 DateTime GetAverageDateTime(int columnIndex );38 double GetMedian(int columnIndex, bool considerSelection); 39 double GetAverage(int columnIndex, bool considerSelection); 40 DateTime GetMedianDateTime(int columnIndex, bool considerSelection); 41 DateTime GetAverageDateTime(int columnIndex, bool considerSelection); 42 42 43 43 double GetStandardDeviation(int columnIndex); 44 44 double GetVariance(int columnIndex); 45 T GetMostCommonValue<T>(int columnIndex );45 T GetMostCommonValue<T>(int columnIndex, bool considerSelection); 46 46 int GetDifferentValuesCount<T>(int columnIndex); 47 47
Note: See TracChangeset
for help on using the changeset viewer.