Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/18/14 15:08:00 (10 years ago)
Author:
bburlacu
Message:

#2245: Added a checkbox in the properties section of the shuffle data tab in the ManipulationView to specify whether the problem data should be shuffled as a whole or separately for each training/test range. Modified ShuffleToIndices methods accordingly. Also fixed very small typo in ManipulationContent.cs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.DataPreprocessing/3.4/Interfaces/IManipulationLogic.cs

    r11171 r11380  
    3838    void ReplaceIndicesByValue(IDictionary<int, IList<int>> cells, string value);
    3939    void ReplaceIndicesByValue<T>(int columnIndex, IEnumerable<int> rowIndices, T value);
    40     void ShuffleWithRanges();
    41     void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges);
     40    void ShuffleWithRanges(bool shuffleRangesSeparately);
     41    void ShuffleWithRanges(IEnumerable<HeuristicLab.Data.IntRange> ranges, bool shuffleRangesSeparately);
    4242    List<int> RowsWithMissingValuesGreater(double percent);
    4343    List<int> ColumnsWithMissingValuesGreater(double percent);
Note: See TracChangeset for help on using the changeset viewer.