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

Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3
Files:
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/HeuristicLab.DataPreprocessing-3.3.csproj

    r10160 r10161  
    8484      <DependentUpon>DataPreprocessingView.cs</DependentUpon>
    8585    </Compile>
    86     <Compile Include="DataSetStatisticInfo.cs" />
    87     <Compile Include="Interfaces\IDataSetStatisticInfo.cs" />
     86    <Compile Include="PreprocessingDataStatisticInfo.cs" />
     87    <Compile Include="Interfaces\IPreprocessingDataStatisticInfo.cs" />
    8888    <Compile Include="Interfaces\IPreprocessingData.cs" />
    8989    <Compile Include="Plugin.cs" />
  • 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.