Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/22/14 14:13:11 (10 years ago)
Author:
rstoll
Message:
  • modified PreprocessingData, uses columnIndex now instead of variableName (is faster and more convenient), set variabelName based methods to Obsolete
  • Already changed SearchLogic, DataGridLogic, StatisticLogic as well as PreprocessingDataManipulation

*

File:
1 edited

Legend:

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

    r10249 r10367  
    99    int GetNominalColumnCount();
    1010    int GetMissingValueCount();
    11     int GetMissingValueCount(string variableName);
     11    int GetMissingValueCount(int columnIndex);
    1212    int GetRowMissingValueCount(int rowIndex);
    13     T GetMin<T>(string variableName) where T : IComparable<T>;
    14     T GetMax<T>(string variableName) where T : IComparable<T>;
    15     double GetMedian(string variableName);
    16     double GetAverage(string variableName);
    17     T GetMostCommonValue<T>(string variableName);
    18     double GetStandardDeviation(string variableName);
    19     double GetVariance(string variableName);
    20     int GetDifferentValuesCount<T>(string variableName);
     13    T GetMin<T>(int columnIndex) where T : IComparable<T>;
     14    T GetMax<T>(int columnIndex) where T : IComparable<T>;
     15    double GetMedian(int columnIndex);
     16    double GetAverage(int columnIndex);
     17    T GetMostCommonValue<T>(int columnIndex);
     18    double GetStandardDeviation(int columnIndex);
     19    double GetVariance(int columnIndex);
     20    int GetDifferentValuesCount<T>(int columnIndex);
     21    bool IsType<T>(int columnIndex);
    2122  }
    2223}
Note: See TracChangeset for help on using the changeset viewer.