Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/AbstractFeatureCorrelationView.cs @ 8880

Last change on this file since 8880 was 8880, checked in by sforsten, 11 years ago

#1292: implemented changes suggested by mkommend in comment:49:ticket:1292

File size: 5.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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
22using System.Collections.Generic;
23using System.ComponentModel;
24using System.Linq;
25using System.Windows.Forms;
26using HeuristicLab.Data;
27using HeuristicLab.MainForm;
28using HeuristicLab.MainForm.WindowsForms;
29using HeuristicLab.PluginInfrastructure;
30
31namespace HeuristicLab.Problems.DataAnalysis.Views {
32  [View("Feature Correlation View")]
33  [Content(typeof(DataAnalysisProblemData), false)]
34  public abstract partial class AbstractFeatureCorrelationView : AsynchronousContentView {
35    public const string ALLSAMPLES = "All Samples";
36    public const string TRAININGSAMPLES = "Training Samples";
37    public const string TESTSAMPLES = "Test Samples";
38
39    public static readonly IList<string> Partitions = new List<string>() { ALLSAMPLES, TRAININGSAMPLES, TESTSAMPLES };
40
41    protected FeatureCorrelationCalculator fcc;
42
43    public new DataAnalysisProblemData Content {
44      get { return (DataAnalysisProblemData)base.Content; }
45      set { base.Content = value; }
46    }
47
48    protected AbstractFeatureCorrelationView() {
49      InitializeComponent();
50      fcc = new FeatureCorrelationCalculator();
51      var calculators = ApplicationManager.Manager.GetInstances<IDependencyCalculator>();
52      var calcList = calculators.OrderBy(c => c.Name).Select(c => new { Name = c.Name, Calculator = c }).ToList();
53      correlationCalcComboBox.ValueMember = "Calculator";
54      correlationCalcComboBox.DisplayMember = "Name";
55      correlationCalcComboBox.DataSource = calcList;
56      correlationCalcComboBox.SelectedItem = calcList.First(c => c.Calculator.GetType().Equals(typeof(PearsonsRDependenceCalculator)));
57      partitionComboBox.DataSource = Partitions;
58      partitionComboBox.SelectedItem = TRAININGSAMPLES;
59    }
60
61    protected override void RegisterContentEvents() {
62      base.RegisterContentEvents();
63      fcc.ProgressCalculation += new FeatureCorrelationCalculator.ProgressCalculationHandler(Content_ProgressCalculation);
64      fcc.CorrelationCalculationFinished += new FeatureCorrelationCalculator.CorrelationCalculationFinishedHandler(Content_CorrelationCalculationFinished);
65    }
66
67    protected override void DeregisterContentEvents() {
68      fcc.CorrelationCalculationFinished -= new FeatureCorrelationCalculator.CorrelationCalculationFinishedHandler(Content_CorrelationCalculationFinished);
69      fcc.ProgressCalculation -= new FeatureCorrelationCalculator.ProgressCalculationHandler(Content_ProgressCalculation);
70      base.DeregisterContentEvents();
71    }
72
73    protected override void OnContentChanged() {
74      base.OnContentChanged();
75      fcc.TryCancelCalculation();
76      if (Content != null) {
77        fcc.ProblemData = Content;
78        CalculateCorrelation();
79      } else {
80        dataView.Maximum = 0;
81        dataView.Minimum = 0;
82        dataView.Content = null;
83        dataView.ResetVisibility();
84      }
85    }
86
87    protected virtual bool[] SetInitialVariableVisibility() {
88      bool[] initialVisibility = new bool[Content.Dataset.DoubleVariables.Count()];
89      int i = 0;
90      foreach (var variable in Content.Dataset.DoubleVariables) {
91        initialVisibility[i] = Content.AllowedInputVariables.Contains(variable);
92        i++;
93      }
94      return initialVisibility;
95    }
96
97    protected void CorrelationMeasureComboBox_SelectedChangeCommitted(object sender, System.EventArgs e) {
98      CalculateCorrelation();
99    }
100    protected void PartitionComboBox_SelectedChangeCommitted(object sender, System.EventArgs e) {
101      CalculateCorrelation();
102    }
103
104    protected abstract void CalculateCorrelation();
105    protected abstract void Content_CorrelationCalculationFinished(object sender, FeatureCorrelationCalculator.CorrelationCalculationFinishedArgs e);
106
107    protected void UpdateDataView(DoubleMatrix correlation) {
108      IDependencyCalculator calc = (IDependencyCalculator)correlationCalcComboBox.SelectedValue;
109      maximumLabel.Text = calc.Maximum.ToString();
110      minimumLabel.Text = calc.Minimum.ToString();
111
112      correlation.SortableView = true;
113      dataView.Maximum = calc.Maximum;
114      dataView.Minimum = calc.Minimum;
115      dataView.Content = correlation;
116      dataView.Enabled = true;
117    }
118
119    protected void Content_ProgressCalculation(object sender, ProgressChangedEventArgs e) {
120      if (!calculatingPanel.Visible && e.ProgressPercentage != heatMapProgressBar.Maximum) {
121        calculatingPanel.Show();
122      } else if (e.ProgressPercentage == heatMapProgressBar.Maximum) {
123        calculatingPanel.Hide();
124      }
125      heatMapProgressBar.Value = e.ProgressPercentage;
126    }
127  }
128}
Note: See TracBrowser for help on using the repository browser.