Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionEstimatedValuesView.cs @ 5809

Last change on this file since 5809 was 5809, checked in by mkommend, 13 years ago

#1418: Reintegrated branch into trunk.

File size: 3.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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
21using System;
22using System.Linq;
23using System.Windows.Forms;
24using HeuristicLab.Data;
25using HeuristicLab.Data.Views;
26using HeuristicLab.MainForm;
27using HeuristicLab.MainForm.WindowsForms;
28
29namespace HeuristicLab.Problems.DataAnalysis.Views {
30  [View("Regression solution estimated values view")]
31  [Content(typeof(IRegressionSolution))]
32  public partial class RegressionSolutionEstimatedValuesView : AsynchronousContentView {
33    private const string TARGETVARIABLE_SERIES_NAME = "TargetVariable";
34    private const string ESTIMATEDVALUES_SERIES_NAME = "EstimatedValues";
35
36    public new IRegressionSolution Content {
37      get { return (IRegressionSolution)base.Content; }
38      set {
39        base.Content = value;
40      }
41    }
42
43    private StringConvertibleMatrixView matrixView;
44
45    public RegressionSolutionEstimatedValuesView()
46      : base() {
47      InitializeComponent();
48      matrixView = new StringConvertibleMatrixView();
49      matrixView.ShowRowsAndColumnsTextBox = false;
50      matrixView.ShowStatisticalInformation = false;
51      matrixView.Dock = DockStyle.Fill;
52      this.Controls.Add(matrixView);
53    }
54
55    #region events
56    protected override void RegisterContentEvents() {
57      base.RegisterContentEvents();
58      Content.ModelChanged += new EventHandler(Content_ModelChanged);
59      Content.ProblemDataChanged += new EventHandler(Content_ProblemDataChanged);
60    }
61
62    protected override void DeregisterContentEvents() {
63      base.DeregisterContentEvents();
64      Content.ModelChanged -= new EventHandler(Content_ModelChanged);
65      Content.ProblemDataChanged -= new EventHandler(Content_ProblemDataChanged);
66    }
67
68    private void Content_ProblemDataChanged(object sender, EventArgs e) {
69      OnContentChanged();
70    }
71
72    private void Content_ModelChanged(object sender, EventArgs e) {
73      OnContentChanged();
74    }
75
76    protected override void OnContentChanged() {
77      base.OnContentChanged();
78      UpdateEstimatedValues();
79    }
80
81    private void UpdateEstimatedValues() {
82      if (InvokeRequired) Invoke((Action)UpdateEstimatedValues);
83      else {
84        DoubleMatrix matrix = null;
85        if (Content != null) {
86          double[,] values = new double[Content.ProblemData.Dataset.Rows, 4];
87
88          double[] target = Content.ProblemData.Dataset.GetVariableValues(Content.ProblemData.TargetVariable);
89          double[] estimated = Content.EstimatedValues.ToArray();
90          for (int row = 0; row < target.Length; row++) {
91            values[row, 0] = target[row];
92            values[row, 1] = estimated[row];
93            values[row, 2] = estimated[row] - target[row];
94            values[row, 3] = estimated[row] / target[row] - 1;
95          }
96
97          matrix = new DoubleMatrix(values);
98          matrix.ColumnNames = new string[] { TARGETVARIABLE_SERIES_NAME, ESTIMATEDVALUES_SERIES_NAME, "Absolute Error", "Relative Error" };
99        }
100        matrixView.Content = matrix;
101      }
102    }
103    #endregion
104  }
105}
Note: See TracBrowser for help on using the repository browser.