Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/14 15:48:53 (11 years ago)
Author:
mleitner
Message:

Add methods for preview of deleting samples/variables without sufficient information

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Interfaces/IManipulationLogic.cs

    r10711 r10715  
    3636    void ShuffleWithRanges();
    3737    void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges);
     38    List<int> RowsWithMissingValuesGreater(double percent);
     39    List<int> ColumnsWithMissingValuesGreater(double percent);
     40    List<int> ColumnsWithVarianceSmaller(double variance);
    3841    void DeleteRowsWithMissingValuesGreater(double percent);
    39     void DeleteColumnsWithMissingValuesGreater(float percent);
     42    void DeleteColumnsWithMissingValuesGreater(double percent);
    4043    void DeleteColumnsWithVarianceSmaller(double variance);
    4144  }
Note: See TracChangeset for help on using the changeset viewer.