Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/14 16:13:42 (11 years ago)
Author:
mleitner
Message:

Add Media, Average, Variance, and StdDeviation support for DateTime

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticsLogic.cs

    r10374 r10381  
    1111    int GetMissingValueCount(int columnIndex);
    1212    int GetRowMissingValueCount(int rowIndex);
     13
    1314    T GetMin<T>(int columnIndex) where T : IComparable<T>;
    1415    T GetMax<T>(int columnIndex) where T : IComparable<T>;
     16   
    1517    double GetMedian(int columnIndex);
    1618    double GetAverage(int columnIndex);
     19    DateTime GetMedianDateTime(int columnIndex);
     20    DateTime GetAverageDateTime(int columnIndex);
     21
    1722    double GetStandardDeviation(int columnIndex);
    1823    double GetVariance(int columnIndex);
     
    2227    bool IsType<T>(int columnIndex);
    2328    string GetColumnTypeAsString(int columnIndex);
     29
    2430  }
    2531}
Note: See TracChangeset for help on using the changeset viewer.