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
Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
Files:
2 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      }
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/StatisticsView.cs

    r10809 r10811  
    141141        logic.GetColumnTypeAsString(columnIndex),
    142142        logic.GetMissingValueCount(columnIndex).ToString(),
    143         logic.GetMin<double>(columnIndex, false).ToString(),
    144         logic.GetMax<double>(columnIndex, false).ToString(),
    145         logic.GetMedian(columnIndex, false).ToString(),
    146         logic.GetAverage(columnIndex, false).ToString(),
     143        logic.GetMin<double>(columnIndex).ToString(),
     144        logic.GetMax<double>(columnIndex).ToString(),
     145        logic.GetMedian(columnIndex).ToString(),
     146        logic.GetAverage(columnIndex).ToString(),
    147147        logic.GetStandardDeviation(columnIndex).ToString(),
    148148        logic.GetVariance(columnIndex).ToString(),
    149         logic.GetMostCommonValue<double>(columnIndex, false).ToString(),
     149        logic.GetMostCommonValue<double>(columnIndex).ToString(),
    150150        logic.GetDifferentValuesCount<double>(columnIndex).ToString()
    151151      };
     
    163163        "", //standard deviation
    164164        "", //variance
    165         logic.GetMostCommonValue<string>(columnIndex, false).ToString(),
     165        logic.GetMostCommonValue<string>(columnIndex).ToString(),
    166166        logic.GetDifferentValuesCount<string>(columnIndex).ToString()
    167167      };
     
    173173        logic.GetColumnTypeAsString(columnIndex),
    174174        logic.GetMissingValueCount(columnIndex).ToString(),
    175         logic.GetMin<DateTime>(columnIndex, false).ToString(),
    176         logic.GetMax<DateTime>(columnIndex, false).ToString(),
    177         logic.GetMedianDateTime(columnIndex, false).ToString(),
    178         logic.GetAverageDateTime(columnIndex, false).ToString(),
     175        logic.GetMin<DateTime>(columnIndex).ToString(),
     176        logic.GetMax<DateTime>(columnIndex).ToString(),
     177        logic.GetMedianDateTime(columnIndex).ToString(),
     178        logic.GetAverageDateTime(columnIndex).ToString(),
    179179        logic.GetStandardDeviation(columnIndex).ToString(),
    180180        logic.GetVariance(columnIndex).ToString(), //variance
    181         logic.GetMostCommonValue<DateTime>(columnIndex, false).ToString(),
     181        logic.GetMostCommonValue<DateTime>(columnIndex).ToString(),
    182182        logic.GetDifferentValuesCount<DateTime>(columnIndex).ToString()
    183183      };
Note: See TracChangeset for help on using the changeset viewer.