Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1313: Implemented new views for data analysis solutions.

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