Changeset 10182 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticInfo.cs
- Timestamp:
- 12/04/13 12:59:23 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticInfo.cs
r10180 r10182 1 2 using System; 1 using System; 2 3 3 namespace HeuristicLab.DataPreprocessing { 4 4 public interface IStatisticInfo { … … 14 14 double GetMedian(int columnIndex); 15 15 double GetAverage(int columnIndex); 16 double GetMostCommonValue(int columnIndex);16 T GetMostCommonValue<T>(int columnIndex); 17 17 double GetStandardDeviation(int columnIndex); 18 publicint GetDifferentValuesCount<T>(int columnIndex);18 int GetDifferentValuesCount<T>(int columnIndex); 19 19 } 20 20 }
Note: See TracChangeset
for help on using the changeset viewer.