- Timestamp:
- 01/22/14 14:33:36 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridContent.cs
r10253 r10369 8 8 public interface IDataGridContent : IStringConvertibleMatrix { 9 9 IDataGridLogic DataGridLogic { get; } 10 I PreprocessingDataManipulationPreprocessingDataManipulation { get; }10 IManipulationLogic PreprocessingDataManipulation { get; } 11 11 } 12 12 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IDataGridLogic.cs
r10367 r10369 3 3 public interface IDataGridLogic { 4 4 IEnumerable<string> ColumnNames { get; } 5 string GetColumnTypeAsString(int columnIndex);6 5 IEnumerable<string> RowNames { get; } 7 6 int Columns { get; } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs
r10367 r10369 2 2 using System.Collections.Generic; 3 3 namespace HeuristicLab.DataPreprocessing { 4 public interface I PreprocessingDataManipulation{4 public interface IManipulationLogic { 5 5 void reOrderToIndices(IEnumerable<int> indices); 6 6 void reOrderToIndices(IList<Tuple<int, int>> indices); -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IStatisticsLogic.cs
r10367 r10369 19 19 double GetVariance(int columnIndex); 20 20 int GetDifferentValuesCount<T>(int columnIndex); 21 21 22 bool IsType<T>(int columnIndex); 23 string GetColumnTypeAsString(int columnIndex); 22 24 } 23 25 }
Note: See TracChangeset
for help on using the changeset viewer.