- Timestamp:
- 12/11/13 17:21:25 (11 years ago)
- Location:
- branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingContext.cs
r10219 r10221 21 21 22 22 using HeuristicLab.Core; 23 using HeuristicLab.Problems.DataAnalysis; 23 24 namespace HeuristicLab.DataPreprocessing { 24 25 public interface IPreprocessingContext : IItem { … … 29 30 /// </summary> 30 31 IItem ParentItem { get; } 32 33 IDataAnalysisProblemData DataAnalysisProblemData { get; } 31 34 } 32 35 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IPreprocessingData.cs
r10220 r10221 40 40 void DeleteColumn(string variableName); 41 41 42 IntRange TrainingPartition { get; } 43 IntRange TestPartition { get; } 44 42 45 IEnumerable<string> VariableNames { get; } 43 46 bool IsType<T>(string variableName);
Note: See TracChangeset
for help on using the changeset viewer.