Last change
on this file since 10165 was
10162,
checked in by rstoll, 11 years ago
|
renaming somehow did not work as expected, here we go again
|
File size:
629 bytes
|
Line | |
---|
1 |
|
---|
2 | using System;
|
---|
3 | namespace HeuristicLab.DataPreprocessing {
|
---|
4 | public interface IPreprocessingDataStatisticInfo {
|
---|
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 | double GetMostCommonValue(int columnIndex);
|
---|
17 | double GetStandardDeviation(int columnIndex);
|
---|
18 | }
|
---|
19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.