Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/04/13 12:59:23 (11 years ago)
Author:
sbreuer
Message:
  • removed unneccesary namespace distinctions
  • moved statisticInfo to implementations folder
File:
1 edited

Legend:

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

    r10180 r10182  
    1 
    2 using System;
     1using System;
     2
    33namespace HeuristicLab.DataPreprocessing {
    44  public interface IStatisticInfo {
     
    1414    double GetMedian(int columnIndex);
    1515    double GetAverage(int columnIndex);
    16     double GetMostCommonValue(int columnIndex);
     16    T GetMostCommonValue<T>(int columnIndex);
    1717    double GetStandardDeviation(int columnIndex);
    18     public int GetDifferentValuesCount<T>(int columnIndex);
     18    int GetDifferentValuesCount<T>(int columnIndex);
    1919  }
    2020}
Note: See TracChangeset for help on using the changeset viewer.