Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/23/14 15:56:31 (10 years ago)
Author:
pfleck
Message:
  • Implemented PreprocessingTransformator to apply Transformations.
File:
1 edited

Legend:

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

    r10778 r10786  
    5252      if (typeSelectorDialog.ShowDialog(this) == DialogResult.OK) {
    5353        try {
    54           var columNames = new[] { "dummy", "target" }.AsEnumerable();
    55           return (ITransformation)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType(new[] { columNames });
     54          // TODO:
     55          var columnNames = Enumerable.Range(0, 10).Select(i => "x" + i);
     56          //var columnNames = new[] { "dummy", "target" }.AsEnumerable();
     57          return (ITransformation)typeSelectorDialog.TypeSelector.CreateInstanceOfSelectedType(new[] { columnNames });
    5658        } catch (Exception ex) {
    5759          ErrorHandling.ShowErrorDialog(this, ex);
Note: See TracChangeset for help on using the changeset viewer.