Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/27/13 15:30:07 (11 years ago)
Author:
rstoll
Message:

renamed to PreprocessingData

File:
1 moved

Legend:

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

    r10159 r10161  
    99    int GetNominalColumnCount();
    1010    int GetMissingValueCount();
    11     int GetMissingValueCount(int columnNumber);
    12     T GetMin<T>(int columnNumber) where T : IComparable<T>;
    13     T GetMax<T>(int columnNumber) where T : IComparable<T>;
    14     double GetMedian(int columnNumber);
    15     double GetAverage(int columnNumber);
    16     double GetMostCommonValue(int columnNumber);
    17     double GetStandardDeviation(int columnNumber);
     11    int GetMissingValueCount(int columnIndex);
     12    T GetMin<T>(int columnIndex) where T : IComparable<T>;
     13    T GetMax<T>(int columnIndex) where T : IComparable<T>;
     14    double GetMedian(int columnIndex);
     15    double GetAverage(int columnIndex);
     16    double GetMostCommonValue(int columnIndex);
     17    double GetStandardDeviation(int columnIndex);
    1818  }
    1919}
Note: See TracChangeset for help on using the changeset viewer.