[3408] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 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 | using System;
|
---|
| 22 | using System.Collections.Generic;
|
---|
| 23 | using System.ComponentModel;
|
---|
| 24 | using System.Drawing;
|
---|
| 25 | using System.Data;
|
---|
| 26 | using System.Linq;
|
---|
| 27 | using System.Text;
|
---|
| 28 | using System.Windows.Forms;
|
---|
| 29 | using System.Windows.Forms.DataVisualization.Charting;
|
---|
| 30 | using HeuristicLab.Common;
|
---|
| 31 | using System.Collections.Specialized;
|
---|
| 32 | using HeuristicLab.MainForm;
|
---|
| 33 | using HeuristicLab.Problems.DataAnalysis;
|
---|
[3442] | 34 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[3408] | 35 |
|
---|
[3442] | 36 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
[3408] | 37 | [View("Scatter Plot View")]
|
---|
[3480] | 38 | [Content(typeof(DataAnalysisSolution), true)]
|
---|
[3442] | 39 | public partial class ScatterPlotView : AsynchronousContentView {
|
---|
[3408] | 40 | private const string DEFAULT_CAPTION = "Scatter Plot";
|
---|
| 41 | private const string ALL_SERIES = "All Samples";
|
---|
| 42 | private const string TRAINING_SERIES = "Training Samples";
|
---|
| 43 | private const string TEST_SERIES = "Test Samples";
|
---|
| 44 |
|
---|
[3442] | 45 | public new DataAnalysisSolution Content {
|
---|
| 46 | get { return (DataAnalysisSolution)base.Content; }
|
---|
| 47 | set { base.Content = value; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
[3408] | 50 | public ScatterPlotView()
|
---|
| 51 | : base() {
|
---|
| 52 | InitializeComponent();
|
---|
| 53 | this.Caption = DEFAULT_CAPTION;
|
---|
| 54 |
|
---|
| 55 | this.chart.Series.Add(ALL_SERIES);
|
---|
| 56 | this.chart.Series[ALL_SERIES].LegendText = ALL_SERIES;
|
---|
| 57 | this.chart.Series[ALL_SERIES].ChartType = SeriesChartType.FastPoint;
|
---|
| 58 |
|
---|
| 59 | this.chart.Series.Add(TRAINING_SERIES);
|
---|
| 60 | this.chart.Series[TRAINING_SERIES].LegendText = TRAINING_SERIES;
|
---|
| 61 | this.chart.Series[TRAINING_SERIES].ChartType = SeriesChartType.FastPoint;
|
---|
| 62 |
|
---|
| 63 | this.chart.Series.Add(TEST_SERIES);
|
---|
| 64 | this.chart.Series[TEST_SERIES].LegendText = TEST_SERIES;
|
---|
| 65 | this.chart.Series[TEST_SERIES].ChartType = SeriesChartType.FastPoint;
|
---|
| 66 |
|
---|
| 67 | this.chart.TextAntiAliasingQuality = TextAntiAliasingQuality.High;
|
---|
| 68 | this.chart.AxisViewChanged += new EventHandler<System.Windows.Forms.DataVisualization.Charting.ViewEventArgs>(chart_AxisViewChanged);
|
---|
| 69 |
|
---|
| 70 | //configure axis
|
---|
| 71 | this.chart.ChartAreas[0].AxisX.Title = "Estimated Values";
|
---|
| 72 | this.chart.ChartAreas[0].CursorX.IsUserSelectionEnabled = true;
|
---|
| 73 | this.chart.ChartAreas[0].AxisX.ScaleView.Zoomable = true;
|
---|
| 74 | this.chart.ChartAreas[0].CursorX.Interval = 0;
|
---|
| 75 | this.chart.ChartAreas[0].CursorY.Interval = 0;
|
---|
| 76 |
|
---|
| 77 | this.chart.ChartAreas[0].AxisY.Title = "Target Values";
|
---|
| 78 | this.chart.ChartAreas[0].CursorY.IsUserSelectionEnabled = true;
|
---|
| 79 | this.chart.ChartAreas[0].AxisY.ScaleView.Zoomable = true;
|
---|
| 80 | this.chart.ChartAreas[0].AxisY.IsStartedFromZero = true;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
[3442] | 83 | protected override void RegisterContentEvents() {
|
---|
| 84 | base.RegisterContentEvents();
|
---|
[3462] | 85 | Content.EstimatedValuesChanged += new EventHandler(Content_EstimatedValuesChanged);
|
---|
[3442] | 86 | Content.ProblemDataChanged += new EventHandler(Content_ProblemDataChanged);
|
---|
| 87 | }
|
---|
| 88 | protected override void DeregisterContentEvents() {
|
---|
| 89 | base.DeregisterContentEvents();
|
---|
[3462] | 90 | Content.EstimatedValuesChanged -= new EventHandler(Content_EstimatedValuesChanged);
|
---|
[3442] | 91 | Content.ProblemDataChanged -= new EventHandler(Content_ProblemDataChanged);
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 |
|
---|
| 95 | void Content_ProblemDataChanged(object sender, EventArgs e) {
|
---|
[3462] | 96 | UpdateChart();
|
---|
[3442] | 97 | }
|
---|
| 98 |
|
---|
[3462] | 99 | void Content_EstimatedValuesChanged(object sender, EventArgs e) {
|
---|
| 100 | UpdateSeries();
|
---|
[3442] | 101 | }
|
---|
| 102 |
|
---|
| 103 | protected override void OnContentChanged() {
|
---|
| 104 | base.OnContentChanged();
|
---|
| 105 | UpdateChart();
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | private void UpdateChart() {
|
---|
| 109 | if (InvokeRequired) Invoke((Action)UpdateChart);
|
---|
| 110 | else {
|
---|
| 111 | if (Content != null) {
|
---|
| 112 | this.Caption = Content.ItemName + " " + DEFAULT_CAPTION;
|
---|
[3408] | 113 | this.UpdateSeries();
|
---|
| 114 | if (!this.chart.Series.Any(s => s.Points.Count > 0))
|
---|
| 115 | this.ToggleSeriesData(this.chart.Series[TRAINING_SERIES]);
|
---|
| 116 | } else {
|
---|
| 117 | this.Caption = DEFAULT_CAPTION;
|
---|
| 118 | this.ClearChart();
|
---|
| 119 | }
|
---|
| 120 | }
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | private void UpdateSeries() {
|
---|
[3462] | 124 | if (InvokeRequired) Invoke((Action)UpdateSeries);
|
---|
| 125 | else {
|
---|
| 126 | string targetVariableName = Content.ProblemData.TargetVariable.Value;
|
---|
| 127 | Dataset dataset = Content.ProblemData.Dataset;
|
---|
| 128 | int trainingStart = Content.ProblemData.TrainingSamplesStart.Value;
|
---|
| 129 | int trainingEnd = Content.ProblemData.TrainingSamplesEnd.Value;
|
---|
| 130 | int testStart = Content.ProblemData.TestSamplesStart.Value;
|
---|
| 131 | int testEnd = Content.ProblemData.TestSamplesEnd.Value;
|
---|
| 132 | if (this.chart.Series[ALL_SERIES].Points.Count > 0)
|
---|
| 133 | this.chart.Series[ALL_SERIES].Points.DataBindXY(Content.EstimatedValues.ToArray(), "",
|
---|
| 134 | dataset[targetVariableName], "");
|
---|
| 135 | if (this.chart.Series[TRAINING_SERIES].Points.Count > 0)
|
---|
| 136 | this.chart.Series[TRAINING_SERIES].Points.DataBindXY(Content.EstimatedTrainingValues.ToArray(), "",
|
---|
| 137 | dataset.GetVariableValues(targetVariableName, trainingStart, trainingEnd), "");
|
---|
| 138 | if (this.chart.Series[TEST_SERIES].Points.Count > 0)
|
---|
| 139 | this.chart.Series[TEST_SERIES].Points.DataBindXY(Content.EstimatedTestValues.ToArray(), "",
|
---|
| 140 | dataset.GetVariableValues(targetVariableName, testStart, testEnd), "");
|
---|
[3408] | 141 |
|
---|
[3462] | 142 | double max = Math.Max(Content.EstimatedValues.Max(), dataset.GetMax(targetVariableName));
|
---|
| 143 | double min = Math.Min(Content.EstimatedValues.Min(), dataset.GetMin(targetVariableName));
|
---|
[3408] | 144 |
|
---|
[3462] | 145 | max = Math.Ceiling(max) * 1.2;
|
---|
| 146 | min = Math.Floor(min) * 0.8;
|
---|
[3408] | 147 |
|
---|
[3462] | 148 | this.chart.ChartAreas[0].AxisX.Maximum = max;
|
---|
| 149 | this.chart.ChartAreas[0].AxisX.Minimum = min;
|
---|
| 150 | this.chart.ChartAreas[0].AxisY.Maximum = max;
|
---|
| 151 | this.chart.ChartAreas[0].AxisY.Minimum = min;
|
---|
| 152 | }
|
---|
[3408] | 153 | }
|
---|
| 154 |
|
---|
| 155 | private void ClearChart() {
|
---|
| 156 | this.chart.Series[ALL_SERIES].Points.Clear();
|
---|
| 157 | this.chart.Series[TRAINING_SERIES].Points.Clear();
|
---|
| 158 | this.chart.Series[TEST_SERIES].Points.Clear();
|
---|
| 159 | }
|
---|
| 160 |
|
---|
| 161 | private void ToggleSeriesData(Series series) {
|
---|
| 162 | if (series.Points.Count > 0) { //checks if series is shown
|
---|
| 163 | if (this.chart.Series.Any(s => s != series && s.Points.Count > 0)) {
|
---|
[3442] | 164 | series.Points.Clear();
|
---|
[3408] | 165 | }
|
---|
[3442] | 166 | } else if (Content != null) {
|
---|
| 167 | string targetVariableName = Content.ProblemData.TargetVariable.Value;
|
---|
| 168 | Dataset dataset = Content.ProblemData.Dataset;
|
---|
| 169 | int trainingStart = Content.ProblemData.TrainingSamplesStart.Value;
|
---|
| 170 | int trainingEnd = Content.ProblemData.TrainingSamplesEnd.Value;
|
---|
| 171 | int testStart = Content.ProblemData.TestSamplesStart.Value;
|
---|
| 172 | int testEnd = Content.ProblemData.TestSamplesEnd.Value;
|
---|
| 173 |
|
---|
[3408] | 174 | IEnumerable<double> predictedValues = null;
|
---|
| 175 | IEnumerable<double> targetValues = null;
|
---|
| 176 | switch (series.Name) {
|
---|
| 177 | case ALL_SERIES:
|
---|
[3442] | 178 | predictedValues = Content.EstimatedValues;
|
---|
| 179 | targetValues = dataset[targetVariableName];
|
---|
[3408] | 180 | break;
|
---|
| 181 | case TRAINING_SERIES:
|
---|
[3442] | 182 | predictedValues = Content.EstimatedTrainingValues;
|
---|
| 183 | targetValues = dataset.GetVariableValues(targetVariableName, trainingStart, trainingEnd);
|
---|
[3408] | 184 | break;
|
---|
| 185 | case TEST_SERIES:
|
---|
[3442] | 186 | predictedValues = Content.EstimatedTestValues;
|
---|
| 187 | targetValues = dataset.GetVariableValues(targetVariableName, testStart, testEnd);
|
---|
[3408] | 188 | break;
|
---|
| 189 | }
|
---|
[3442] | 190 | series.Points.DataBindXY(predictedValues, "", targetValues, "");
|
---|
[3408] | 191 | this.chart.Legends[series.Legend].ForeColor = Color.Black;
|
---|
| 192 | }
|
---|
| 193 | }
|
---|
| 194 |
|
---|
| 195 | private void chart_MouseDown(object sender, MouseEventArgs e) {
|
---|
| 196 | HitTestResult result = chart.HitTest(e.X, e.Y);
|
---|
| 197 | if (result.ChartElementType == ChartElementType.LegendItem) {
|
---|
| 198 | this.ToggleSeriesData(result.Series);
|
---|
| 199 | }
|
---|
| 200 | }
|
---|
| 201 |
|
---|
| 202 | private void chart_MouseMove(object sender, MouseEventArgs e) {
|
---|
| 203 | HitTestResult result = chart.HitTest(e.X, e.Y);
|
---|
| 204 | if (result.ChartElementType == ChartElementType.LegendItem)
|
---|
| 205 | this.Cursor = Cursors.Hand;
|
---|
| 206 | else
|
---|
| 207 | this.Cursor = Cursors.Default;
|
---|
| 208 | }
|
---|
| 209 |
|
---|
| 210 | private void chart_AxisViewChanged(object sender, System.Windows.Forms.DataVisualization.Charting.ViewEventArgs e) {
|
---|
| 211 | this.chart.ChartAreas[0].AxisX.ScaleView.Size = e.NewSize;
|
---|
| 212 | this.chart.ChartAreas[0].AxisY.ScaleView.Size = e.NewSize;
|
---|
| 213 | }
|
---|
| 214 |
|
---|
| 215 | private void chart_CustomizeLegend(object sender, CustomizeLegendEventArgs e) {
|
---|
| 216 | e.LegendItems[0].Cells[1].ForeColor = this.chart.Series[ALL_SERIES].Points.Count == 0 ? Color.Gray : Color.Black;
|
---|
| 217 | e.LegendItems[1].Cells[1].ForeColor = this.chart.Series[TRAINING_SERIES].Points.Count == 0 ? Color.Gray : Color.Black;
|
---|
[3442] | 218 | e.LegendItems[2].Cells[1].ForeColor = this.chart.Series[TEST_SERIES].Points.Count == 0 ? Color.Gray : Color.Black;
|
---|
[3408] | 219 | }
|
---|
| 220 | }
|
---|
| 221 | }
|
---|