Last change
on this file since 10182 was
10182,
checked in by sbreuer, 11 years ago
|
- removed unneccesary namespace distinctions
- moved statisticInfo to implementations folder
|
File size:
664 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.DataPreprocessing {
|
---|
4 | public interface IStatisticInfo {
|
---|
5 |
|
---|
6 | int GetColumnCount();
|
---|
7 | int GetRowCount();
|
---|
8 | int GetNumericColumnCount();
|
---|
9 | int GetNominalColumnCount();
|
---|
10 | int GetMissingValueCount();
|
---|
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 | T GetMostCommonValue<T>(int columnIndex);
|
---|
17 | double GetStandardDeviation(int columnIndex);
|
---|
18 | int GetDifferentValuesCount<T>(int columnIndex);
|
---|
19 | }
|
---|
20 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.