Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 12:47:54 (10 years ago)
Author:
sbreuer
Message:
  • selected average and co. implemented
  • SelectionChanged NullPointer fixed
File:
1 edited

Legend:

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

    r10551 r10809  
    3333    int GetRowMissingValueCount(int rowIndex);
    3434
    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>;
    3737
    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);
    4242
    4343    double GetStandardDeviation(int columnIndex);
    4444    double GetVariance(int columnIndex);
    45     T GetMostCommonValue<T>(int columnIndex);
     45    T GetMostCommonValue<T>(int columnIndex, bool considerSelection);
    4646    int GetDifferentValuesCount<T>(int columnIndex);
    4747
Note: See TracChangeset for help on using the changeset viewer.