Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 13:19:42 (10 years ago)
Author:
sbreuer
Message:
  • provide default value (false) for considerSelection parameter
File:
1 edited

Legend:

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

    r10809 r10811  
    3333    int GetRowMissingValueCount(int rowIndex);
    3434
    35     T GetMin<T>(int columnIndex, bool considerSelection) where T : IComparable<T>;
    36     T GetMax<T>(int columnIndex, bool considerSelection) where T : IComparable<T>;
     35    T GetMin<T>(int columnIndex, bool considerSelection = false) where T : IComparable<T>;
     36    T GetMax<T>(int columnIndex, bool considerSelection = false) where T : IComparable<T>;
    3737
    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);
     38    double GetMedian(int columnIndex, bool considerSelection = false);
     39    double GetAverage(int columnIndex, bool considerSelection = false);
     40    DateTime GetMedianDateTime(int columnIndex, bool considerSelection = false);
     41    DateTime GetAverageDateTime(int columnIndex, bool considerSelection = false);
    4242
    4343    double GetStandardDeviation(int columnIndex);
    4444    double GetVariance(int columnIndex);
    45     T GetMostCommonValue<T>(int columnIndex, bool considerSelection);
     45    T GetMostCommonValue<T>(int columnIndex, bool considerSelection = false);
    4646    int GetDifferentValuesCount<T>(int columnIndex);
    4747
Note: See TracChangeset for help on using the changeset viewer.