Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/11/14 13:29:00 (10 years ago)
Author:
pfleck
Message:
  • Inverse iterate when backtransforming model
  • Insert CopyColumnTransformation in front of Transformations-List
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/PreprocessingTransformator.cs

    r10976 r10980  
    119119
    120120        var copyTransformation = CreateCopyTransformation(oldName, newName);
    121         preprocessingData.Transformations.Add(copyTransformation);
    122 
     121        preprocessingData.Transformations.Insert(0, copyTransformation);
    123122      }
    124 
    125       //var transformedColumns = transformations.Select(x => x.Column).Distinct();
    126       //foreach (var column in transformedColumns) {
    127       //  var copyTransformation = CreateCopyTransformation(column);
    128       //  preprocessingData.Transformations.Add(copyTransformation);
    129       //}
    130123    }
    131124
Note: See TracChangeset for help on using the changeset viewer.