- Timestamp:
- 04/02/14 14:50:03 (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/IManipulationLogic.cs
r10709 r10711 36 36 void ShuffleWithRanges(); 37 37 void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges); 38 void DeleteRowsWithMissingValuesGreater(double percent); 39 void DeleteColumnsWithMissingValuesGreater(float percent); 40 void DeleteColumnsWithVarianceSmaller(double variance); 38 41 } 39 42 } -
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/ITransformationLogic.cs
r10539 r10711 22 22 namespace HeuristicLab.DataPreprocessing { 23 23 public interface ITransformationLogic { 24 void DeleteRowsWithMissingValuesGreater(double percent); 25 void DeleteColumnsWithMissingValuesGreater(float percent); 26 void DeleteColumnsWithVarianceSmaller(double variance); 24 27 25 } 28 26 }
Note: See TracChangeset
for help on using the changeset viewer.