Last change
on this file since 10240 was
10216,
checked in by rstoll, 11 years ago
|
Exchanged own median, standard deviation implementation with the one in the common lib
Added GetVariance (using common as well)
|
File size:
790 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(string variableName);
|
---|
12 | int GetRowMissingValueCount(int rowIndex);
|
---|
13 | T GetMin<T>(string variableName) where T : IComparable<T>;
|
---|
14 | T GetMax<T>(string variableName) where T : IComparable<T>;
|
---|
15 | double GetMedian(string variableName);
|
---|
16 | double GetAverage(string variableName);
|
---|
17 | T GetMostCommonValue<T>(string variableName);
|
---|
18 | double GetStandardDeviation(string variableName);
|
---|
19 | double GetVariance(string variableName);
|
---|
20 | int GetDifferentValuesCount<T>(string variableName);
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.