Last change
on this file since 10370 was
10369,
checked in by rstoll, 11 years ago
|
- Renamed PreprocessingDataManipulation to ManipulationLogic
- Proceeded with StatisticsView
|
File size:
848 bytes
|
Line | |
---|
1 | using System;
|
---|
2 |
|
---|
3 | namespace HeuristicLab.DataPreprocessing {
|
---|
4 | public interface IStatisticsLogic {
|
---|
5 |
|
---|
6 | int GetColumnCount();
|
---|
7 | int GetRowCount();
|
---|
8 | int GetNumericColumnCount();
|
---|
9 | int GetNominalColumnCount();
|
---|
10 | int GetMissingValueCount();
|
---|
11 | int GetMissingValueCount(int columnIndex);
|
---|
12 | int GetRowMissingValueCount(int rowIndex);
|
---|
13 | T GetMin<T>(int columnIndex) where T : IComparable<T>;
|
---|
14 | T GetMax<T>(int columnIndex) where T : IComparable<T>;
|
---|
15 | double GetMedian(int columnIndex);
|
---|
16 | double GetAverage(int columnIndex);
|
---|
17 | T GetMostCommonValue<T>(int columnIndex);
|
---|
18 | double GetStandardDeviation(int columnIndex);
|
---|
19 | double GetVariance(int columnIndex);
|
---|
20 | int GetDifferentValuesCount<T>(int columnIndex);
|
---|
21 |
|
---|
22 | bool IsType<T>(int columnIndex);
|
---|
23 | string GetColumnTypeAsString(int columnIndex);
|
---|
24 | }
|
---|
25 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.