Last change
on this file since 10244 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
|
Rev | Line | |
---|
[10182] | 1 | using System;
|
---|
| 2 |
|
---|
[10148] | 3 | namespace HeuristicLab.DataPreprocessing {
|
---|
[10180] | 4 | public interface IStatisticInfo {
|
---|
[10148] | 5 |
|
---|
| 6 | int GetColumnCount();
|
---|
| 7 | int GetRowCount();
|
---|
| 8 | int GetNumericColumnCount();
|
---|
| 9 | int GetNominalColumnCount();
|
---|
| 10 | int GetMissingValueCount();
|
---|
[10183] | 11 | int GetMissingValueCount(string variableName);
|
---|
[10191] | 12 | int GetRowMissingValueCount(int rowIndex);
|
---|
[10183] | 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);
|
---|
[10216] | 19 | double GetVariance(string variableName);
|
---|
[10183] | 20 | int GetDifferentValuesCount<T>(string variableName);
|
---|
[10148] | 21 | }
|
---|
| 22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.