Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 13:19:42 (10 years ago)
Author:
sbreuer
Message:
  • provide default value (false) for considerSelection parameter
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/ManipulationView.cs

    r10809 r10811  
    9191          break;
    9292        case 1: //Average
    93           Content.ManipulationLogic.ReplaceIndicesByAverageValue(cells, false);
     93          Content.ManipulationLogic.ReplaceIndicesByAverageValue(cells);
    9494          break;
    9595        case 2: //Median
    96           Content.ManipulationLogic.ReplaceIndicesByMedianValue(cells, false);
     96          Content.ManipulationLogic.ReplaceIndicesByMedianValue(cells);
    9797          break;
    9898        case 3: //Most Common
    99           Content.ManipulationLogic.ReplaceIndicesByMostCommonValue(cells, false);
     99          Content.ManipulationLogic.ReplaceIndicesByMostCommonValue(cells);
    100100          break;
    101101        case 4: //Random
    102           Content.ManipulationLogic.ReplaceIndicesByRandomValue(cells, false);
     102          Content.ManipulationLogic.ReplaceIndicesByRandomValue(cells);
    103103          break;
    104104      }
Note: See TracChangeset for help on using the changeset viewer.