[3916] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3916] | 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 | using System;
|
---|
| 22 | using System.Collections.Generic;
|
---|
| 23 | using System.Windows.Forms;
|
---|
[4068] | 24 | using HeuristicLab.Data;
|
---|
[3916] | 25 | using HeuristicLab.MainForm;
|
---|
| 26 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[3979] | 27 | using HeuristicLab.Problems.DataAnalysis.Evaluators;
|
---|
[3916] | 28 |
|
---|
| 29 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
[4068] | 30 | [Content(typeof(DataAnalysisSolution), false)]
|
---|
[3916] | 31 | [View("Results View")]
|
---|
[3979] | 32 | public partial class ResultsView : AsynchronousContentView {
|
---|
[4531] | 33 | private List<string> rowNames = new List<string>() { "Mean squared error", "Pearson's R²", "Average relative error" };
|
---|
[3979] | 34 | private List<string> columnNames = new List<string>() { "Training", "Test" };
|
---|
| 35 |
|
---|
[3916] | 36 | public ResultsView() {
|
---|
| 37 | InitializeComponent();
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | public new DataAnalysisSolution Content {
|
---|
| 41 | get { return (DataAnalysisSolution)base.Content; }
|
---|
| 42 | set { base.Content = value; }
|
---|
| 43 | }
|
---|
[3979] | 44 |
|
---|
| 45 | protected override void RegisterContentEvents() {
|
---|
| 46 | base.RegisterContentEvents();
|
---|
| 47 | Content.ModelChanged += new EventHandler(Content_ModelChanged);
|
---|
| 48 | Content.ProblemDataChanged += new EventHandler(Content_ProblemDataChanged);
|
---|
| 49 | Content.EstimatedValuesChanged += new EventHandler(Content_EstimatedValuesChanged);
|
---|
| 50 | }
|
---|
| 51 | protected override void DeregisterContentEvents() {
|
---|
| 52 | base.DeregisterContentEvents();
|
---|
| 53 | Content.ModelChanged -= new EventHandler(Content_ModelChanged);
|
---|
| 54 | Content.ProblemDataChanged -= new EventHandler(Content_ProblemDataChanged);
|
---|
| 55 | Content.EstimatedValuesChanged -= new EventHandler(Content_EstimatedValuesChanged);
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | private void Content_ModelChanged(object sender, EventArgs e) {
|
---|
| 59 | UpdateView();
|
---|
| 60 | }
|
---|
| 61 | private void Content_ProblemDataChanged(object sender, EventArgs e) {
|
---|
| 62 | UpdateView();
|
---|
| 63 | }
|
---|
| 64 | private void Content_EstimatedValuesChanged(object sender, EventArgs e) {
|
---|
| 65 | UpdateView();
|
---|
| 66 | }
|
---|
| 67 |
|
---|
| 68 | protected override void OnContentChanged() {
|
---|
| 69 | base.OnContentChanged();
|
---|
| 70 | UpdateView();
|
---|
| 71 | }
|
---|
| 72 | private void UpdateView() {
|
---|
| 73 | if (Content != null) {
|
---|
| 74 | DoubleMatrix matrix = new DoubleMatrix(rowNames.Count, columnNames.Count);
|
---|
| 75 | matrix.RowNames = rowNames;
|
---|
| 76 | matrix.ColumnNames = columnNames;
|
---|
| 77 | matrix.SortableView = false;
|
---|
| 78 |
|
---|
[4468] | 79 | IEnumerable<double> originalTrainingValues = Content.ProblemData.Dataset.GetEnumeratedVariableValues(Content.ProblemData.TargetVariable.Value, Content.ProblemData.TrainingIndizes);
|
---|
| 80 | IEnumerable<double> originalTestValues = Content.ProblemData.Dataset.GetEnumeratedVariableValues(Content.ProblemData.TargetVariable.Value, Content.ProblemData.TestIndizes);
|
---|
[3979] | 81 | matrix[0, 0] = SimpleMSEEvaluator.Calculate(originalTrainingValues, Content.EstimatedTrainingValues);
|
---|
| 82 | matrix[0, 1] = SimpleMSEEvaluator.Calculate(originalTestValues, Content.EstimatedTestValues);
|
---|
| 83 | matrix[1, 0] = SimpleRSquaredEvaluator.Calculate(originalTrainingValues, Content.EstimatedTrainingValues);
|
---|
| 84 | matrix[1, 1] = SimpleRSquaredEvaluator.Calculate(originalTestValues, Content.EstimatedTestValues);
|
---|
| 85 | matrix[2, 0] = SimpleMeanAbsolutePercentageErrorEvaluator.Calculate(originalTrainingValues, Content.EstimatedTrainingValues);
|
---|
| 86 | matrix[2, 1] = SimpleMeanAbsolutePercentageErrorEvaluator.Calculate(originalTestValues, Content.EstimatedTestValues);
|
---|
| 87 |
|
---|
| 88 | matrixView.Content = matrix;
|
---|
| 89 | } else
|
---|
| 90 | matrixView.Content = null;
|
---|
| 91 | }
|
---|
[3916] | 92 | }
|
---|
| 93 | }
|
---|