- Timestamp:
- 01/22/14 16:13:42 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticsLogic.cs
r10374 r10381 11 11 int GetMissingValueCount(int columnIndex); 12 12 int GetRowMissingValueCount(int rowIndex); 13 13 14 T GetMin<T>(int columnIndex) where T : IComparable<T>; 14 15 T GetMax<T>(int columnIndex) where T : IComparable<T>; 16 15 17 double GetMedian(int columnIndex); 16 18 double GetAverage(int columnIndex); 19 DateTime GetMedianDateTime(int columnIndex); 20 DateTime GetAverageDateTime(int columnIndex); 21 17 22 double GetStandardDeviation(int columnIndex); 18 23 double GetVariance(int columnIndex); … … 22 27 bool IsType<T>(int columnIndex); 23 28 string GetColumnTypeAsString(int columnIndex); 29 24 30 } 25 31 }
Note: See TracChangeset
for help on using the changeset viewer.