Changeset 10921
- Timestamp:
- 05/30/14 11:46:51 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing.Views/3.3/DataPreprocessingView.cs
r10913 r10921 52 52 var manipulationLogic = new ManipulationLogic(data, searchLogic, statisticsLogic, dataGridLogic); 53 53 var chartLogic = new ChartLogic(data); 54 var correlationMatrixLogic = new ChartLogic(data);54 //var correlationMatrixLogic = new ChartLogic(data); 55 55 var filterLogic = new FilterLogic(data); 56 56 var creator = new ProblemDataCreator(Content); 57 57 var problemData = (DataAnalysisProblemData)creator.CreateProblemData(); 58 var dataCompletenessLogic = new ChartLogic(data);58 //var dataCompletenessLogic = new ChartLogic(data); 59 59 60 60 var viewShortcuts = new ItemList<IViewShortcut> { 61 61 new DataGridContent(dataGridLogic, manipulationLogic, filterLogic), 62 62 new StatisticsContent(statisticsLogic), 63 new FilterContent(filterLogic), 64 new TransformationContent(data), 65 new ManipulationContent(manipulationLogic, searchLogic, dataGridLogic), 63 66 64 new LineChartContent(chartLogic), 67 65 new HistogramContent(chartLogic), … … 69 67 new CorrelationMatrixContent(problemData), 70 68 new DataCompletenessChartContent(dataGridLogic, searchLogic) 69 //new DataCompletenessChartContent(dataCompletenessLogic), 70 71 new FilterContent(filterLogic), 72 new ManipulationContent(manipulationLogic, searchLogic, dataGridLogic), 73 new TransformationContent(data) 71 74 }; 72 75
Note: See TracChangeset
for help on using the changeset viewer.