Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/14 14:28:19 (11 years ago)
Author:
rstoll
Message:
  • Added ManipulationView with Content

presentation logic implemented
manipulation actions for delete xY missing

  • License added to LineChartView
  • ShuffleWithRanges without parameter added to ManipulationLogic (will use training and test partition)
Location:
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3
Files:
2 added
3 edited

Legend:

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

    r10672 r10709  
    5959          new FilterContent(filterLogic),
    6060          new TransformationContent(transformationLogic),
     61          new ManipulationContent(manipulationLogic),
    6162          new LineChartContent(lineChartLogic),
    6263          new HistogramContent(histogramLogic)
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/HeuristicLab.DataPreprocessing.Views-3.3.csproj

    r10701 r10709  
    103103      <DependentUpon>LineChartView.cs</DependentUpon>
    104104    </Compile>
     105    <Compile Include="ManipulationView.cs">
     106      <SubType>UserControl</SubType>
     107    </Compile>
     108    <Compile Include="ManipulationView.Designer.cs">
     109      <DependentUpon>ManipulationView.cs</DependentUpon>
     110    </Compile>
    105111    <Compile Include="Plugin.cs" />
    106112    <Compile Include="PreprocessingChartView.cs">
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/LineChartView.cs

    r10658 r10709  
    1 using System;
    2 using System.Collections.Generic;
    3 using System.ComponentModel;
    4 using System.Drawing;
    5 using System.Data;
    6 using System.Linq;
    7 using System.Text;
     1#region License Information
     2/* HeuristicLab
     3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 *
     5 * This file is part of HeuristicLab.
     6 *
     7 * HeuristicLab is free software: you can redistribute it and/or modify
     8 * it under the terms of the GNU General Public License as published by
     9 * the Free Software Foundation, either version 3 of the License, or
     10 * (at your option) any later version.
     11 *
     12 * HeuristicLab is distributed in the hope that it will be useful,
     13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 * GNU General Public License for more details.
     16 *
     17 * You should have received a copy of the GNU General Public License
     18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
     19 */
     20#endregion
     21
    822using System.Windows.Forms;
    923using HeuristicLab.Analysis;
    10 using HeuristicLab.Collections;
    11 using HeuristicLab.Core;
    12 using HeuristicLab.Core.Views;
    13 using HeuristicLab.Data;
    1424using HeuristicLab.MainForm;
    1525
Note: See TracChangeset for help on using the changeset viewer.