Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/05/14 14:11:06 (10 years ago)
Author:
rstoll
Message:
  • Delete samples without sufficient information or variance implemented in TransformationLogic
File:
1 edited

Legend:

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

    r10244 r10537  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5 
    6 namespace HeuristicLab.DataPreprocessing
    7 {
    8   public interface ITransformationLogic
    9   {
     1
     2namespace HeuristicLab.DataPreprocessing {
     3  public interface ITransformationLogic {
     4    void deleteRowsWithMissingValuesGreater(double percent);
     5    void deleteColumnsWithMissingValuesGreater(float percent);
     6    void deleteColumnsWithVarianceSmaller(double variance);
    107  }
    118}
Note: See TracChangeset for help on using the changeset viewer.