Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/07/14 12:47:54 (10 years ago)
Author:
sbreuer
Message:
  • selected average and co. implemented
  • SelectionChanged NullPointer fixed
File:
1 edited

Legend:

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

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