Last change
on this file since 10148 was
10148,
checked in by rstoll, 11 years ago
|
Initial work for DatasetStatisticInfo
|
File size:
625 bytes
|
Line | |
---|
1 |
|
---|
2 | using System;
|
---|
3 | namespace HeuristicLab.DataPreprocessing {
|
---|
4 | public interface IDatasetStatisticInfo {
|
---|
5 |
|
---|
6 | int GetColumnCount();
|
---|
7 | int GetRowCount();
|
---|
8 | int GetNumericColumnCount();
|
---|
9 | int GetNominalColumnCount();
|
---|
10 | 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 GeStandardDeviation(int columnNumber);
|
---|
18 | }
|
---|
19 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.