[13780] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15583] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[13780] | 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 |
|
---|
| 22 | using System;
|
---|
[14826] | 23 | using System.Collections;
|
---|
[13780] | 24 | using System.Collections.Generic;
|
---|
[13836] | 25 | using System.Drawing;
|
---|
[13817] | 26 | using System.Globalization;
|
---|
[13780] | 27 | using System.Linq;
|
---|
[13840] | 28 | using System.Threading;
|
---|
[13837] | 29 | using System.Threading.Tasks;
|
---|
[13780] | 30 | using System.Windows.Forms;
|
---|
| 31 | using System.Windows.Forms.DataVisualization.Charting;
|
---|
| 32 | using HeuristicLab.Common;
|
---|
[13836] | 33 | using HeuristicLab.MainForm.WindowsForms;
|
---|
[13780] | 34 | using HeuristicLab.Visualization.ChartControlsExtensions;
|
---|
| 35 |
|
---|
| 36 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
[14852] | 37 | public partial class PartialDependencePlot : UserControl, IPartialDependencePlot {
|
---|
[13831] | 38 | private ModifiableDataset sharedFixedVariables; // used for syncronising variable values between charts
|
---|
[13837] | 39 | private ModifiableDataset internalDataset; // holds the x values for each point drawn
|
---|
[13780] | 40 |
|
---|
[13842] | 41 | private CancellationTokenSource cancelCurrentRecalculateSource;
|
---|
[13840] | 42 |
|
---|
[13842] | 43 | private readonly List<IRegressionSolution> solutions;
|
---|
| 44 | private readonly Dictionary<IRegressionSolution, Series> seriesCache;
|
---|
| 45 | private readonly Dictionary<IRegressionSolution, Series> ciSeriesCache;
|
---|
| 46 |
|
---|
[13853] | 47 | private readonly ToolStripMenuItem configToolStripMenuItem;
|
---|
[14852] | 48 | private readonly PartialDependencePlotConfigurationDialog configurationDialog;
|
---|
[13853] | 49 |
|
---|
[13842] | 50 | #region Properties
|
---|
[14014] | 51 | public string XAxisTitle {
|
---|
| 52 | get { return chart.ChartAreas[0].AxisX.Title; }
|
---|
| 53 | set { chart.ChartAreas[0].AxisX.Title = value; }
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | public string YAxisTitle {
|
---|
| 57 | get { return chart.ChartAreas[0].AxisY.Title; }
|
---|
| 58 | set { chart.ChartAreas[0].AxisY.Title = value; }
|
---|
| 59 | }
|
---|
| 60 |
|
---|
[13831] | 61 | public bool ShowLegend {
|
---|
| 62 | get { return chart.Legends[0].Enabled; }
|
---|
| 63 | set { chart.Legends[0].Enabled = value; }
|
---|
[13780] | 64 | }
|
---|
[13831] | 65 | public bool ShowCursor {
|
---|
| 66 | get { return chart.Annotations[0].Visible; }
|
---|
[13853] | 67 | set {
|
---|
| 68 | chart.Annotations[0].Visible = value;
|
---|
[14131] | 69 | if (!value) chart.Titles[0].Text = string.Empty;
|
---|
[13853] | 70 | }
|
---|
[13831] | 71 | }
|
---|
[13780] | 72 |
|
---|
[13855] | 73 | public bool ShowConfigButton {
|
---|
| 74 | get { return configurationButton.Visible; }
|
---|
| 75 | set { configurationButton.Visible = value; }
|
---|
| 76 | }
|
---|
| 77 |
|
---|
[13831] | 78 | private int xAxisTicks = 5;
|
---|
| 79 | public int XAxisTicks {
|
---|
| 80 | get { return xAxisTicks; }
|
---|
[13843] | 81 | set {
|
---|
| 82 | if (value != xAxisTicks) {
|
---|
| 83 | xAxisTicks = value;
|
---|
[15211] | 84 | SetupAxis(chart, chart.ChartAreas[0].AxisX, trainingMin, trainingMax, XAxisTicks, FixedXAxisMin, FixedXAxisMax);
|
---|
[13843] | 85 | RecalculateInternalDataset();
|
---|
| 86 | }
|
---|
| 87 | }
|
---|
[13780] | 88 | }
|
---|
[13842] | 89 | private double? fixedXAxisMin;
|
---|
| 90 | public double? FixedXAxisMin {
|
---|
| 91 | get { return fixedXAxisMin; }
|
---|
| 92 | set {
|
---|
| 93 | if ((value.HasValue && fixedXAxisMin.HasValue && !value.Value.IsAlmost(fixedXAxisMin.Value)) || (value.HasValue != fixedXAxisMin.HasValue)) {
|
---|
| 94 | fixedXAxisMin = value;
|
---|
[15211] | 95 | SetupAxis(chart, chart.ChartAreas[0].AxisX, trainingMin, trainingMax, XAxisTicks, FixedXAxisMin, FixedXAxisMax);
|
---|
| 96 | RecalculateInternalDataset();
|
---|
| 97 | // set the vertical line position
|
---|
| 98 | if (VerticalLineAnnotation.X <= fixedXAxisMin) {
|
---|
| 99 | var axisX = chart.ChartAreas[0].AxisX;
|
---|
| 100 | var step = (axisX.Maximum - axisX.Minimum) / drawingSteps;
|
---|
| 101 | VerticalLineAnnotation.X = axisX.Minimum + step;
|
---|
[14006] | 102 | }
|
---|
[13842] | 103 | }
|
---|
| 104 | }
|
---|
| 105 | }
|
---|
| 106 | private double? fixedXAxisMax;
|
---|
| 107 | public double? FixedXAxisMax {
|
---|
| 108 | get { return fixedXAxisMax; }
|
---|
| 109 | set {
|
---|
| 110 | if ((value.HasValue && fixedXAxisMax.HasValue && !value.Value.IsAlmost(fixedXAxisMax.Value)) || (value.HasValue != fixedXAxisMax.HasValue)) {
|
---|
| 111 | fixedXAxisMax = value;
|
---|
[15211] | 112 | SetupAxis(chart, chart.ChartAreas[0].AxisX, trainingMin, trainingMax, XAxisTicks, FixedXAxisMin, FixedXAxisMax);
|
---|
| 113 | RecalculateInternalDataset();
|
---|
| 114 | // set the vertical line position
|
---|
| 115 | if (VerticalLineAnnotation.X >= fixedXAxisMax) {
|
---|
| 116 | var axisX = chart.ChartAreas[0].AxisX;
|
---|
| 117 | var step = (axisX.Maximum - axisX.Minimum) / drawingSteps;
|
---|
| 118 | VerticalLineAnnotation.X = axisX.Maximum - step;
|
---|
[14006] | 119 | }
|
---|
[13842] | 120 | }
|
---|
| 121 | }
|
---|
| 122 | }
|
---|
| 123 |
|
---|
[13831] | 124 | private int yAxisTicks = 5;
|
---|
[13842] | 125 | public int YAxisTicks {
|
---|
[13831] | 126 | get { return yAxisTicks; }
|
---|
[13843] | 127 | set {
|
---|
| 128 | if (value != yAxisTicks) {
|
---|
| 129 | yAxisTicks = value;
|
---|
[15211] | 130 | SetupAxis(chart, chart.ChartAreas[0].AxisY, yMin, yMax, YAxisTicks, FixedYAxisMin, FixedYAxisMax);
|
---|
[13843] | 131 | RecalculateInternalDataset();
|
---|
| 132 | }
|
---|
| 133 | }
|
---|
[13831] | 134 | }
|
---|
[13842] | 135 | private double? fixedYAxisMin;
|
---|
| 136 | public double? FixedYAxisMin {
|
---|
| 137 | get { return fixedYAxisMin; }
|
---|
| 138 | set {
|
---|
| 139 | if ((value.HasValue && fixedYAxisMin.HasValue && !value.Value.IsAlmost(fixedYAxisMin.Value)) || (value.HasValue != fixedYAxisMin.HasValue)) {
|
---|
| 140 | fixedYAxisMin = value;
|
---|
[15211] | 141 | SetupAxis(chart, chart.ChartAreas[0].AxisY, yMin, yMax, YAxisTicks, FixedYAxisMin, FixedYAxisMax);
|
---|
[13842] | 142 | }
|
---|
| 143 | }
|
---|
| 144 | }
|
---|
| 145 | private double? fixedYAxisMax;
|
---|
| 146 | public double? FixedYAxisMax {
|
---|
| 147 | get { return fixedYAxisMax; }
|
---|
| 148 | set {
|
---|
| 149 | if ((value.HasValue && fixedYAxisMax.HasValue && !value.Value.IsAlmost(fixedYAxisMax.Value)) || (value.HasValue != fixedYAxisMax.HasValue)) {
|
---|
| 150 | fixedYAxisMax = value;
|
---|
[15211] | 151 | SetupAxis(chart, chart.ChartAreas[0].AxisY, yMin, yMax, YAxisTicks, FixedYAxisMin, FixedYAxisMax);
|
---|
[13842] | 152 | }
|
---|
| 153 | }
|
---|
| 154 | }
|
---|
[13780] | 155 |
|
---|
[15213] | 156 | private double trainingMin = -1;
|
---|
| 157 | private double trainingMax = 1;
|
---|
[13780] | 158 |
|
---|
[13831] | 159 | private int drawingSteps = 1000;
|
---|
| 160 | public int DrawingSteps {
|
---|
| 161 | get { return drawingSteps; }
|
---|
[13842] | 162 | set {
|
---|
| 163 | if (value != drawingSteps) {
|
---|
| 164 | drawingSteps = value;
|
---|
| 165 | RecalculateInternalDataset();
|
---|
| 166 | ResizeAllSeriesData();
|
---|
| 167 | }
|
---|
| 168 | }
|
---|
[13780] | 169 | }
|
---|
| 170 |
|
---|
[13831] | 171 | private string freeVariable;
|
---|
| 172 | public string FreeVariable {
|
---|
| 173 | get { return freeVariable; }
|
---|
[13780] | 174 | set {
|
---|
[13831] | 175 | if (value == freeVariable) return;
|
---|
| 176 | if (solutions.Any(s => !s.ProblemData.Dataset.DoubleVariables.Contains(value))) {
|
---|
| 177 | throw new ArgumentException("Variable does not exist in the ProblemData of the Solutions.");
|
---|
| 178 | }
|
---|
| 179 | freeVariable = value;
|
---|
| 180 | RecalculateInternalDataset();
|
---|
[13780] | 181 | }
|
---|
| 182 | }
|
---|
| 183 |
|
---|
[13843] | 184 | private double yMin;
|
---|
| 185 | public double YMin {
|
---|
| 186 | get { return yMin; }
|
---|
| 187 | }
|
---|
| 188 | private double yMax;
|
---|
| 189 | public double YMax {
|
---|
| 190 | get { return yMax; }
|
---|
| 191 | }
|
---|
| 192 |
|
---|
[14089] | 193 | public bool IsZoomed {
|
---|
| 194 | get { return chart.ChartAreas[0].AxisX.ScaleView.IsZoomed; }
|
---|
| 195 | }
|
---|
| 196 |
|
---|
[13831] | 197 | private VerticalLineAnnotation VerticalLineAnnotation {
|
---|
| 198 | get { return (VerticalLineAnnotation)chart.Annotations.SingleOrDefault(x => x is VerticalLineAnnotation); }
|
---|
[13780] | 199 | }
|
---|
[13850] | 200 |
|
---|
| 201 | internal ElementPosition InnerPlotPosition {
|
---|
| 202 | get { return chart.ChartAreas[0].InnerPlotPosition; }
|
---|
| 203 | }
|
---|
[13842] | 204 | #endregion
|
---|
[13780] | 205 |
|
---|
[14158] | 206 | public event EventHandler ChartPostPaint;
|
---|
| 207 |
|
---|
[14852] | 208 | public PartialDependencePlot() {
|
---|
[13780] | 209 | InitializeComponent();
|
---|
[13836] | 210 |
|
---|
[13842] | 211 | solutions = new List<IRegressionSolution>();
|
---|
| 212 | seriesCache = new Dictionary<IRegressionSolution, Series>();
|
---|
| 213 | ciSeriesCache = new Dictionary<IRegressionSolution, Series>();
|
---|
| 214 |
|
---|
[13836] | 215 | // Configure axis
|
---|
| 216 | chart.CustomizeAllChartAreas();
|
---|
| 217 | chart.ChartAreas[0].CursorX.IsUserSelectionEnabled = true;
|
---|
| 218 | chart.ChartAreas[0].AxisX.ScaleView.Zoomable = true;
|
---|
| 219 | chart.ChartAreas[0].CursorX.Interval = 0;
|
---|
| 220 |
|
---|
| 221 | chart.ChartAreas[0].CursorY.IsUserSelectionEnabled = true;
|
---|
| 222 | chart.ChartAreas[0].AxisY.ScaleView.Zoomable = true;
|
---|
| 223 | chart.ChartAreas[0].CursorY.Interval = 0;
|
---|
[13840] | 224 |
|
---|
[13853] | 225 | configToolStripMenuItem = new ToolStripMenuItem("Configuration");
|
---|
[13855] | 226 | configToolStripMenuItem.Click += config_Click;
|
---|
[13853] | 227 | chart.ContextMenuStrip.Items.Add(new ToolStripSeparator());
|
---|
| 228 | chart.ContextMenuStrip.Items.Add(configToolStripMenuItem);
|
---|
[14852] | 229 | configurationDialog = new PartialDependencePlotConfigurationDialog(this);
|
---|
[13853] | 230 |
|
---|
[14852] | 231 | Disposed += Control_Disposed;
|
---|
[13780] | 232 | }
|
---|
[13853] | 233 |
|
---|
[14852] | 234 | private void Control_Disposed(object sender, EventArgs e) {
|
---|
[13843] | 235 | if (cancelCurrentRecalculateSource != null)
|
---|
| 236 | cancelCurrentRecalculateSource.Cancel();
|
---|
[13840] | 237 | }
|
---|
| 238 |
|
---|
[13842] | 239 | public void Configure(IEnumerable<IRegressionSolution> solutions, ModifiableDataset sharedFixedVariables, string freeVariable, int drawingSteps, bool initializeAxisRanges = true) {
|
---|
[13831] | 240 | if (!SolutionsCompatible(solutions))
|
---|
| 241 | throw new ArgumentException("Solutions are not compatible with the problem data.");
|
---|
| 242 | this.freeVariable = freeVariable;
|
---|
| 243 | this.drawingSteps = drawingSteps;
|
---|
[13780] | 244 |
|
---|
[13842] | 245 | this.solutions.Clear();
|
---|
| 246 | this.solutions.AddRange(solutions);
|
---|
| 247 |
|
---|
[13831] | 248 | // add an event such that whenever a value is changed in the shared dataset,
|
---|
| 249 | // this change is reflected in the internal dataset (where the value becomes a whole column)
|
---|
| 250 | if (this.sharedFixedVariables != null)
|
---|
| 251 | this.sharedFixedVariables.ItemChanged -= sharedFixedVariables_ItemChanged;
|
---|
| 252 | this.sharedFixedVariables = sharedFixedVariables;
|
---|
| 253 | this.sharedFixedVariables.ItemChanged += sharedFixedVariables_ItemChanged;
|
---|
[13780] | 254 |
|
---|
[13842] | 255 | RecalculateTrainingLimits(initializeAxisRanges);
|
---|
[13831] | 256 | RecalculateInternalDataset();
|
---|
[13842] | 257 |
|
---|
| 258 | chart.Series.Clear();
|
---|
| 259 | seriesCache.Clear();
|
---|
| 260 | ciSeriesCache.Clear();
|
---|
| 261 | foreach (var solution in this.solutions) {
|
---|
| 262 | var series = CreateSeries(solution);
|
---|
| 263 | seriesCache.Add(solution, series.Item1);
|
---|
| 264 | if (series.Item2 != null)
|
---|
| 265 | ciSeriesCache.Add(solution, series.Item2);
|
---|
| 266 | }
|
---|
| 267 |
|
---|
[14118] | 268 | // Set cursor and x-axis
|
---|
| 269 | // Make sure to allow a small offset to be able to distinguish the vertical line annotation from the axis
|
---|
| 270 | var defaultValue = sharedFixedVariables.GetDoubleValue(freeVariable, 0);
|
---|
| 271 | var step = (trainingMax - trainingMin) / drawingSteps;
|
---|
| 272 | var minimum = chart.ChartAreas[0].AxisX.Minimum;
|
---|
| 273 | var maximum = chart.ChartAreas[0].AxisX.Maximum;
|
---|
| 274 | if (defaultValue <= minimum)
|
---|
| 275 | VerticalLineAnnotation.X = minimum + step;
|
---|
| 276 | else if (defaultValue >= maximum)
|
---|
| 277 | VerticalLineAnnotation.X = maximum - step;
|
---|
| 278 | else
|
---|
| 279 | VerticalLineAnnotation.X = defaultValue;
|
---|
| 280 |
|
---|
| 281 | if (ShowCursor)
|
---|
[14267] | 282 | chart.Titles[0].Text = FreeVariable + " : " + defaultValue.ToString("G5", CultureInfo.CurrentCulture);
|
---|
[14118] | 283 |
|
---|
[13842] | 284 | ResizeAllSeriesData();
|
---|
| 285 | OrderAndColorSeries();
|
---|
[13780] | 286 | }
|
---|
| 287 |
|
---|
[13843] | 288 | public async Task RecalculateAsync(bool updateOnFinish = true, bool resetYAxis = true) {
|
---|
[13842] | 289 | if (IsDisposed
|
---|
| 290 | || sharedFixedVariables == null || !solutions.Any() || string.IsNullOrEmpty(freeVariable)
|
---|
[15211] | 291 | || trainingMin > trainingMax || drawingSteps == 0)
|
---|
[13842] | 292 | return;
|
---|
[13829] | 293 |
|
---|
[13853] | 294 | calculationPendingTimer.Start();
|
---|
| 295 |
|
---|
[13842] | 296 | // cancel previous recalculate call
|
---|
| 297 | if (cancelCurrentRecalculateSource != null)
|
---|
| 298 | cancelCurrentRecalculateSource.Cancel();
|
---|
| 299 | cancelCurrentRecalculateSource = new CancellationTokenSource();
|
---|
[14118] | 300 | var cancellationToken = cancelCurrentRecalculateSource.Token;
|
---|
[13842] | 301 |
|
---|
| 302 | // Update series
|
---|
| 303 | try {
|
---|
[13843] | 304 | var limits = await UpdateAllSeriesDataAsync(cancellationToken);
|
---|
[15211] | 305 | chart.Invalidate();
|
---|
[13842] | 306 |
|
---|
[13843] | 307 | yMin = limits.Lower;
|
---|
| 308 | yMax = limits.Upper;
|
---|
[13842] | 309 | // Set y-axis
|
---|
[13843] | 310 | if (resetYAxis)
|
---|
[15211] | 311 | SetupAxis(chart, chart.ChartAreas[0].AxisY, yMin, yMax, YAxisTicks, FixedYAxisMin, FixedYAxisMax);
|
---|
[13842] | 312 |
|
---|
| 313 | UpdateOutOfTrainingRangeStripLines();
|
---|
| 314 |
|
---|
[13853] | 315 | calculationPendingTimer.Stop();
|
---|
| 316 | calculationPendingLabel.Visible = false;
|
---|
[13843] | 317 | if (updateOnFinish)
|
---|
| 318 | Update();
|
---|
[15211] | 319 | }
|
---|
| 320 | catch (OperationCanceledException) { }
|
---|
| 321 | catch (AggregateException ae) {
|
---|
[13842] | 322 | if (!ae.InnerExceptions.Any(e => e is OperationCanceledException))
|
---|
| 323 | throw;
|
---|
| 324 | }
|
---|
[13831] | 325 | }
|
---|
| 326 |
|
---|
[14131] | 327 | public void UpdateTitlePosition() {
|
---|
| 328 | var title = chart.Titles[0];
|
---|
| 329 | var plotArea = InnerPlotPosition;
|
---|
| 330 |
|
---|
| 331 | title.Visible = plotArea.Width != 0;
|
---|
| 332 |
|
---|
| 333 | title.Position.X = plotArea.X + (plotArea.Width / 2);
|
---|
| 334 | }
|
---|
| 335 |
|
---|
[15211] | 336 | private static void SetupAxis(EnhancedChart chart, Axis axis, double minValue, double maxValue, int ticks, double? fixedAxisMin, double? fixedAxisMax) {
|
---|
| 337 | //guard if only one distinct value is present
|
---|
| 338 | if (minValue.IsAlmost(maxValue)) {
|
---|
| 339 | minValue = minValue - 0.5;
|
---|
| 340 | maxValue = minValue + 0.5;
|
---|
[14157] | 341 | }
|
---|
[13843] | 342 |
|
---|
[15211] | 343 | double axisMin, axisMax, axisInterval;
|
---|
| 344 | ChartUtil.CalculateAxisInterval(minValue, maxValue, ticks, out axisMin, out axisMax, out axisInterval);
|
---|
| 345 | axis.Minimum = fixedAxisMin ?? axisMin;
|
---|
| 346 | axis.Maximum = fixedAxisMax ?? axisMax;
|
---|
| 347 | axis.Interval = (axis.Maximum - axis.Minimum) / ticks;
|
---|
| 348 |
|
---|
[15222] | 349 | chart.ChartAreas[0].RecalculateAxesScale();
|
---|
[13842] | 350 | }
|
---|
| 351 |
|
---|
| 352 | private void RecalculateTrainingLimits(bool initializeAxisRanges) {
|
---|
| 353 | trainingMin = solutions.Select(s => s.ProblemData.Dataset.GetDoubleValues(freeVariable, s.ProblemData.TrainingIndices).Min()).Max();
|
---|
| 354 | trainingMax = solutions.Select(s => s.ProblemData.Dataset.GetDoubleValues(freeVariable, s.ProblemData.TrainingIndices).Max()).Min();
|
---|
| 355 |
|
---|
| 356 | if (initializeAxisRanges) {
|
---|
| 357 | double xmin, xmax, xinterval;
|
---|
[15211] | 358 | //guard if only one distinct value is present
|
---|
| 359 | if (trainingMin.IsAlmost(trainingMax))
|
---|
| 360 | ChartUtil.CalculateAxisInterval(trainingMin - 0.5, trainingMax + 0.5, XAxisTicks, out xmin, out xmax, out xinterval);
|
---|
| 361 | else
|
---|
| 362 | ChartUtil.CalculateAxisInterval(trainingMin, trainingMax, XAxisTicks, out xmin, out xmax, out xinterval);
|
---|
| 363 |
|
---|
[13842] | 364 | FixedXAxisMin = xmin;
|
---|
| 365 | FixedXAxisMax = xmax;
|
---|
| 366 | }
|
---|
| 367 | }
|
---|
| 368 |
|
---|
[13831] | 369 | private void RecalculateInternalDataset() {
|
---|
[13843] | 370 | if (sharedFixedVariables == null)
|
---|
| 371 | return;
|
---|
| 372 |
|
---|
[13831] | 373 | // we expand the range in order to get nice tick intervals on the x axis
|
---|
[13829] | 374 | double xmin, xmax, xinterval;
|
---|
[15211] | 375 | //guard if only one distinct value is present
|
---|
| 376 | if (trainingMin.IsAlmost(trainingMax))
|
---|
| 377 | ChartUtil.CalculateAxisInterval(trainingMin - 0.5, trainingMin + 0.5, XAxisTicks, out xmin, out xmax, out xinterval);
|
---|
| 378 | else
|
---|
| 379 | ChartUtil.CalculateAxisInterval(trainingMin, trainingMax, XAxisTicks, out xmin, out xmax, out xinterval);
|
---|
[13842] | 380 |
|
---|
| 381 | if (FixedXAxisMin.HasValue) xmin = FixedXAxisMin.Value;
|
---|
| 382 | if (FixedXAxisMax.HasValue) xmax = FixedXAxisMax.Value;
|
---|
[13831] | 383 | double step = (xmax - xmin) / drawingSteps;
|
---|
| 384 |
|
---|
[13829] | 385 | var xvalues = new List<double>();
|
---|
[13831] | 386 | for (int i = 0; i < drawingSteps; i++)
|
---|
| 387 | xvalues.Add(xmin + i * step);
|
---|
| 388 |
|
---|
[14826] | 389 | if (sharedFixedVariables == null)
|
---|
| 390 | return;
|
---|
| 391 |
|
---|
| 392 | var variables = sharedFixedVariables.VariableNames.ToList();
|
---|
| 393 | var values = new List<IList>();
|
---|
| 394 | foreach (var varName in variables) {
|
---|
| 395 | if (varName == FreeVariable) {
|
---|
| 396 | values.Add(xvalues);
|
---|
| 397 | } else if (sharedFixedVariables.VariableHasType<double>(varName)) {
|
---|
| 398 | values.Add(Enumerable.Repeat(sharedFixedVariables.GetDoubleValue(varName, 0), xvalues.Count).ToList());
|
---|
| 399 | } else if (sharedFixedVariables.VariableHasType<string>(varName)) {
|
---|
| 400 | values.Add(Enumerable.Repeat(sharedFixedVariables.GetStringValue(varName, 0), xvalues.Count).ToList());
|
---|
| 401 | }
|
---|
| 402 | }
|
---|
| 403 |
|
---|
| 404 | internalDataset = new ModifiableDataset(variables, values);
|
---|
[13808] | 405 | }
|
---|
| 406 |
|
---|
[13842] | 407 | private Tuple<Series, Series> CreateSeries(IRegressionSolution solution) {
|
---|
| 408 | var series = new Series {
|
---|
| 409 | ChartType = SeriesChartType.Line,
|
---|
| 410 | Name = solution.ProblemData.TargetVariable + " " + solutions.IndexOf(solution)
|
---|
| 411 | };
|
---|
| 412 | series.LegendText = series.Name;
|
---|
[13837] | 413 |
|
---|
[14099] | 414 | var confidenceBoundSolution = solution as IConfidenceRegressionSolution;
|
---|
[13842] | 415 | Series confidenceIntervalSeries = null;
|
---|
| 416 | if (confidenceBoundSolution != null) {
|
---|
| 417 | confidenceIntervalSeries = new Series {
|
---|
| 418 | ChartType = SeriesChartType.Range,
|
---|
| 419 | YValuesPerPoint = 2,
|
---|
| 420 | Name = "95% Conf. Interval " + series.Name,
|
---|
| 421 | IsVisibleInLegend = false
|
---|
| 422 | };
|
---|
[13836] | 423 | }
|
---|
[13842] | 424 | return Tuple.Create(series, confidenceIntervalSeries);
|
---|
| 425 | }
|
---|
[13836] | 426 |
|
---|
[13842] | 427 | private void OrderAndColorSeries() {
|
---|
[13836] | 428 | chart.SuspendRepaint();
|
---|
[13842] | 429 |
|
---|
[13836] | 430 | chart.Series.Clear();
|
---|
| 431 | // Add mean series for applying palette colors
|
---|
[13842] | 432 | foreach (var solution in solutions) {
|
---|
| 433 | chart.Series.Add(seriesCache[solution]);
|
---|
[13780] | 434 | }
|
---|
[13842] | 435 |
|
---|
[13836] | 436 | chart.Palette = ChartColorPalette.BrightPastel;
|
---|
| 437 | chart.ApplyPaletteColors();
|
---|
| 438 | chart.Palette = ChartColorPalette.None;
|
---|
| 439 |
|
---|
[13842] | 440 | // Add confidence interval series before its coresponding series for correct z index
|
---|
| 441 | foreach (var solution in solutions) {
|
---|
| 442 | Series ciSeries;
|
---|
| 443 | if (ciSeriesCache.TryGetValue(solution, out ciSeries)) {
|
---|
| 444 | var series = seriesCache[solution];
|
---|
[13995] | 445 | ciSeries.Color = Color.FromArgb(40, series.Color);
|
---|
[13842] | 446 | int idx = chart.Series.IndexOf(seriesCache[solution]);
|
---|
| 447 | chart.Series.Insert(idx, ciSeries);
|
---|
| 448 | }
|
---|
[13836] | 449 | }
|
---|
[13842] | 450 |
|
---|
[13836] | 451 | chart.ResumeRepaint(true);
|
---|
[13842] | 452 | }
|
---|
[13836] | 453 |
|
---|
[13843] | 454 | private async Task<DoubleLimit> UpdateAllSeriesDataAsync(CancellationToken cancellationToken) {
|
---|
| 455 | var updateTasks = solutions.Select(solution => UpdateSeriesDataAsync(solution, cancellationToken));
|
---|
| 456 |
|
---|
| 457 | double min = double.MaxValue, max = double.MinValue;
|
---|
| 458 | foreach (var update in updateTasks) {
|
---|
| 459 | var limit = await update;
|
---|
| 460 | if (limit.Lower < min) min = limit.Lower;
|
---|
| 461 | if (limit.Upper > max) max = limit.Upper;
|
---|
| 462 | }
|
---|
| 463 |
|
---|
| 464 | return new DoubleLimit(min, max);
|
---|
| 465 | }
|
---|
| 466 |
|
---|
| 467 | private Task<DoubleLimit> UpdateSeriesDataAsync(IRegressionSolution solution, CancellationToken cancellationToken) {
|
---|
[13842] | 468 | return Task.Run(() => {
|
---|
[13843] | 469 | var xvalues = internalDataset.GetDoubleValues(FreeVariable).ToList();
|
---|
| 470 | var yvalues = solution.Model.GetEstimatedValues(internalDataset, Enumerable.Range(0, internalDataset.Rows)).ToList();
|
---|
[13836] | 471 |
|
---|
[13843] | 472 | double min = double.MaxValue, max = double.MinValue;
|
---|
[13820] | 473 |
|
---|
[13843] | 474 | var series = seriesCache[solution];
|
---|
| 475 | for (int i = 0; i < xvalues.Count; i++) {
|
---|
| 476 | series.Points[i].SetValueXY(xvalues[i], yvalues[i]);
|
---|
| 477 | if (yvalues[i] < min) min = yvalues[i];
|
---|
| 478 | if (yvalues[i] > max) max = yvalues[i];
|
---|
| 479 | }
|
---|
[13820] | 480 |
|
---|
[14118] | 481 | cancellationToken.ThrowIfCancellationRequested();
|
---|
| 482 |
|
---|
[14099] | 483 | var confidenceBoundSolution = solution as IConfidenceRegressionSolution;
|
---|
[13843] | 484 | if (confidenceBoundSolution != null) {
|
---|
| 485 | var confidenceIntervalSeries = ciSeriesCache[solution];
|
---|
[14118] | 486 | var variances = confidenceBoundSolution.Model.GetEstimatedVariances(internalDataset, Enumerable.Range(0, internalDataset.Rows)).ToList();
|
---|
[13843] | 487 | for (int i = 0; i < xvalues.Count; i++) {
|
---|
| 488 | var lower = yvalues[i] - 1.96 * Math.Sqrt(variances[i]);
|
---|
| 489 | var upper = yvalues[i] + 1.96 * Math.Sqrt(variances[i]);
|
---|
| 490 | confidenceIntervalSeries.Points[i].SetValueXY(xvalues[i], lower, upper);
|
---|
| 491 | if (lower < min) min = lower;
|
---|
| 492 | if (upper > max) max = upper;
|
---|
[13842] | 493 | }
|
---|
[13843] | 494 | }
|
---|
| 495 |
|
---|
| 496 | cancellationToken.ThrowIfCancellationRequested();
|
---|
| 497 | return new DoubleLimit(min, max);
|
---|
[13842] | 498 | }, cancellationToken);
|
---|
| 499 | }
|
---|
[13840] | 500 |
|
---|
[13842] | 501 | private void ResizeAllSeriesData() {
|
---|
[13843] | 502 | if (internalDataset == null)
|
---|
| 503 | return;
|
---|
| 504 |
|
---|
[13842] | 505 | var xvalues = internalDataset.GetDoubleValues(FreeVariable).ToList();
|
---|
| 506 | foreach (var solution in solutions)
|
---|
| 507 | ResizeSeriesData(solution, xvalues);
|
---|
[13780] | 508 | }
|
---|
[13842] | 509 | private void ResizeSeriesData(IRegressionSolution solution, IList<double> xvalues = null) {
|
---|
| 510 | if (xvalues == null)
|
---|
| 511 | xvalues = internalDataset.GetDoubleValues(FreeVariable).ToList();
|
---|
[13780] | 512 |
|
---|
[13842] | 513 | var series = seriesCache[solution];
|
---|
| 514 | series.Points.SuspendUpdates();
|
---|
[13853] | 515 | series.Points.Clear();
|
---|
[13842] | 516 | for (int i = 0; i < xvalues.Count; i++)
|
---|
| 517 | series.Points.Add(new DataPoint(xvalues[i], 0.0));
|
---|
| 518 | series.Points.ResumeUpdates();
|
---|
[13780] | 519 |
|
---|
[13842] | 520 | Series confidenceIntervalSeries;
|
---|
| 521 | if (ciSeriesCache.TryGetValue(solution, out confidenceIntervalSeries)) {
|
---|
| 522 | confidenceIntervalSeries.Points.SuspendUpdates();
|
---|
[13853] | 523 | confidenceIntervalSeries.Points.Clear();
|
---|
[13842] | 524 | for (int i = 0; i < xvalues.Count; i++)
|
---|
| 525 | confidenceIntervalSeries.Points.Add(new DataPoint(xvalues[i], new[] { -1.0, 1.0 }));
|
---|
| 526 | confidenceIntervalSeries.Points.ResumeUpdates();
|
---|
| 527 | }
|
---|
[13780] | 528 | }
|
---|
| 529 |
|
---|
[13842] | 530 | public async Task AddSolutionAsync(IRegressionSolution solution) {
|
---|
[13831] | 531 | if (!SolutionsCompatible(solutions.Concat(new[] { solution })))
|
---|
| 532 | throw new ArgumentException("The solution is not compatible with the problem data.");
|
---|
[13842] | 533 | if (solutions.Contains(solution))
|
---|
| 534 | return;
|
---|
| 535 |
|
---|
[13831] | 536 | solutions.Add(solution);
|
---|
[13842] | 537 | RecalculateTrainingLimits(true);
|
---|
| 538 |
|
---|
| 539 | var series = CreateSeries(solution);
|
---|
| 540 | seriesCache.Add(solution, series.Item1);
|
---|
| 541 | if (series.Item2 != null)
|
---|
| 542 | ciSeriesCache.Add(solution, series.Item2);
|
---|
| 543 |
|
---|
| 544 | ResizeSeriesData(solution);
|
---|
| 545 | OrderAndColorSeries();
|
---|
| 546 |
|
---|
| 547 | await RecalculateAsync();
|
---|
[13995] | 548 | var args = new EventArgs<IRegressionSolution>(solution);
|
---|
| 549 | OnSolutionAdded(this, args);
|
---|
[13780] | 550 | }
|
---|
[13995] | 551 |
|
---|
[13842] | 552 | public async Task RemoveSolutionAsync(IRegressionSolution solution) {
|
---|
| 553 | if (!solutions.Remove(solution))
|
---|
| 554 | return;
|
---|
| 555 |
|
---|
| 556 | RecalculateTrainingLimits(true);
|
---|
| 557 |
|
---|
| 558 | seriesCache.Remove(solution);
|
---|
| 559 | ciSeriesCache.Remove(solution);
|
---|
| 560 |
|
---|
| 561 | await RecalculateAsync();
|
---|
[13995] | 562 | var args = new EventArgs<IRegressionSolution>(solution);
|
---|
| 563 | OnSolutionRemoved(this, args);
|
---|
[13831] | 564 | }
|
---|
[13780] | 565 |
|
---|
[13831] | 566 | private static bool SolutionsCompatible(IEnumerable<IRegressionSolution> solutions) {
|
---|
[14826] | 567 | var refSolution = solutions.First();
|
---|
| 568 | var refSolVars = refSolution.ProblemData.Dataset.VariableNames;
|
---|
| 569 | foreach (var solution in solutions.Skip(1)) {
|
---|
| 570 | var variables1 = solution.ProblemData.Dataset.VariableNames;
|
---|
| 571 | if (!variables1.All(refSolVars.Contains))
|
---|
| 572 | return false;
|
---|
| 573 |
|
---|
| 574 | foreach (var factorVar in variables1.Where(solution.ProblemData.Dataset.VariableHasType<string>)) {
|
---|
| 575 | var distinctVals = refSolution.ProblemData.Dataset.GetStringValues(factorVar).Distinct();
|
---|
| 576 | if (solution.ProblemData.Dataset.GetStringValues(factorVar).Any(val => !distinctVals.Contains(val))) return false;
|
---|
[13831] | 577 | }
|
---|
| 578 | }
|
---|
| 579 | return true;
|
---|
[13780] | 580 | }
|
---|
| 581 |
|
---|
[13842] | 582 | private void UpdateOutOfTrainingRangeStripLines() {
|
---|
[13831] | 583 | var axisX = chart.ChartAreas[0].AxisX;
|
---|
| 584 | var lowerStripLine = axisX.StripLines[0];
|
---|
| 585 | var upperStripLine = axisX.StripLines[1];
|
---|
| 586 |
|
---|
| 587 | lowerStripLine.IntervalOffset = axisX.Minimum;
|
---|
[14006] | 588 | lowerStripLine.StripWidth = Math.Abs(trainingMin - axisX.Minimum);
|
---|
[13831] | 589 |
|
---|
| 590 | upperStripLine.IntervalOffset = trainingMax;
|
---|
[14006] | 591 | upperStripLine.StripWidth = Math.Abs(axisX.Maximum - trainingMax);
|
---|
[13780] | 592 | }
|
---|
| 593 |
|
---|
[13842] | 594 | #region Events
|
---|
[13995] | 595 | public event EventHandler<EventArgs<IRegressionSolution>> SolutionAdded;
|
---|
| 596 | public void OnSolutionAdded(object sender, EventArgs<IRegressionSolution> args) {
|
---|
| 597 | var added = SolutionAdded;
|
---|
| 598 | if (added == null) return;
|
---|
| 599 | added(sender, args);
|
---|
| 600 | }
|
---|
| 601 |
|
---|
| 602 | public event EventHandler<EventArgs<IRegressionSolution>> SolutionRemoved;
|
---|
| 603 | public void OnSolutionRemoved(object sender, EventArgs<IRegressionSolution> args) {
|
---|
| 604 | var removed = SolutionRemoved;
|
---|
| 605 | if (removed == null) return;
|
---|
| 606 | removed(sender, args);
|
---|
| 607 | }
|
---|
| 608 |
|
---|
[13817] | 609 | public event EventHandler VariableValueChanged;
|
---|
| 610 | public void OnVariableValueChanged(object sender, EventArgs args) {
|
---|
| 611 | var changed = VariableValueChanged;
|
---|
| 612 | if (changed == null) return;
|
---|
| 613 | changed(sender, args);
|
---|
| 614 | }
|
---|
| 615 |
|
---|
[14089] | 616 | public event EventHandler ZoomChanged;
|
---|
| 617 | public void OnZoomChanged(object sender, EventArgs args) {
|
---|
| 618 | var changed = ZoomChanged;
|
---|
| 619 | if (changed == null) return;
|
---|
| 620 | changed(sender, args);
|
---|
| 621 | }
|
---|
| 622 |
|
---|
[13842] | 623 | private void sharedFixedVariables_ItemChanged(object o, EventArgs<int, int> e) {
|
---|
| 624 | if (o != sharedFixedVariables) return;
|
---|
[14826] | 625 | var variables = sharedFixedVariables.VariableNames.ToList();
|
---|
[13842] | 626 | var rowIndex = e.Value;
|
---|
| 627 | var columnIndex = e.Value2;
|
---|
[13831] | 628 |
|
---|
[13842] | 629 | var variableName = variables[columnIndex];
|
---|
| 630 | if (variableName == FreeVariable) return;
|
---|
[14826] | 631 | if (internalDataset.VariableHasType<double>(variableName)) {
|
---|
| 632 | var v = sharedFixedVariables.GetDoubleValue(variableName, rowIndex);
|
---|
| 633 | var values = new List<double>(Enumerable.Repeat(v, internalDataset.Rows));
|
---|
| 634 | internalDataset.ReplaceVariable(variableName, values);
|
---|
| 635 | } else if (internalDataset.VariableHasType<string>(variableName)) {
|
---|
| 636 | var v = sharedFixedVariables.GetStringValue(variableName, rowIndex);
|
---|
| 637 | var values = new List<String>(Enumerable.Repeat(v, internalDataset.Rows));
|
---|
| 638 | internalDataset.ReplaceVariable(variableName, values);
|
---|
| 639 | } else {
|
---|
| 640 | // unsupported type
|
---|
| 641 | throw new NotSupportedException();
|
---|
| 642 | }
|
---|
[13780] | 643 | }
|
---|
| 644 |
|
---|
[13818] | 645 | private void chart_AnnotationPositionChanging(object sender, AnnotationPositionChangingEventArgs e) {
|
---|
[13840] | 646 | var step = (trainingMax - trainingMin) / drawingSteps;
|
---|
[13846] | 647 | double newLocation = step * (long)Math.Round(e.NewLocationX / step);
|
---|
[13840] | 648 | var axisX = chart.ChartAreas[0].AxisX;
|
---|
[13995] | 649 | if (newLocation >= axisX.Maximum)
|
---|
| 650 | newLocation = axisX.Maximum - step;
|
---|
| 651 | if (newLocation <= axisX.Minimum)
|
---|
| 652 | newLocation = axisX.Minimum + step;
|
---|
[13831] | 653 |
|
---|
[13846] | 654 | e.NewLocationX = newLocation;
|
---|
[14118] | 655 |
|
---|
| 656 | UpdateCursor();
|
---|
| 657 | }
|
---|
| 658 | private void chart_AnnotationPositionChanged(object sender, EventArgs e) {
|
---|
| 659 | UpdateCursor();
|
---|
| 660 | }
|
---|
[14826] | 661 | private void UpdateCursor() {
|
---|
[14118] | 662 | var x = VerticalLineAnnotation.X;
|
---|
[13831] | 663 | sharedFixedVariables.SetVariableValue(x, FreeVariable, 0);
|
---|
| 664 |
|
---|
[13853] | 665 | if (ShowCursor) {
|
---|
[14267] | 666 | chart.Titles[0].Text = FreeVariable + " : " + x.ToString("G5", CultureInfo.CurrentCulture);
|
---|
[13853] | 667 | chart.Update();
|
---|
| 668 | }
|
---|
[13831] | 669 |
|
---|
[13853] | 670 | OnVariableValueChanged(this, EventArgs.Empty);
|
---|
[13818] | 671 | }
|
---|
| 672 |
|
---|
[13780] | 673 | private void chart_MouseMove(object sender, MouseEventArgs e) {
|
---|
[13842] | 674 | bool hitCursor = chart.HitTest(e.X, e.Y).ChartElementType == ChartElementType.Annotation;
|
---|
| 675 | chart.Cursor = hitCursor ? Cursors.VSplit : Cursors.Default;
|
---|
[13780] | 676 | }
|
---|
| 677 |
|
---|
[14131] | 678 | private async void chart_DragDrop(object sender, DragEventArgs e) {
|
---|
[13780] | 679 | var data = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
|
---|
| 680 | if (data != null) {
|
---|
| 681 | var solution = data as IRegressionSolution;
|
---|
[13842] | 682 | if (!solutions.Contains(solution))
|
---|
[14131] | 683 | await AddSolutionAsync(solution);
|
---|
[13780] | 684 | }
|
---|
| 685 | }
|
---|
[13842] | 686 | private void chart_DragEnter(object sender, DragEventArgs e) {
|
---|
[13780] | 687 | if (!e.Data.GetDataPresent(HeuristicLab.Common.Constants.DragDropDataFormat)) return;
|
---|
| 688 | e.Effect = DragDropEffects.None;
|
---|
| 689 |
|
---|
| 690 | var data = e.Data.GetData(HeuristicLab.Common.Constants.DragDropDataFormat);
|
---|
| 691 | var regressionSolution = data as IRegressionSolution;
|
---|
| 692 | if (regressionSolution != null) {
|
---|
| 693 | e.Effect = DragDropEffects.Copy;
|
---|
| 694 | }
|
---|
| 695 | }
|
---|
[13853] | 696 |
|
---|
| 697 | private void calculationPendingTimer_Tick(object sender, EventArgs e) {
|
---|
| 698 | calculationPendingLabel.Visible = true;
|
---|
| 699 | Update();
|
---|
| 700 | }
|
---|
| 701 |
|
---|
[13855] | 702 | private void config_Click(object sender, EventArgs e) {
|
---|
[13853] | 703 | configurationDialog.ShowDialog(this);
|
---|
| 704 | }
|
---|
[14089] | 705 |
|
---|
| 706 | private void chart_SelectionRangeChanged(object sender, CursorEventArgs e) {
|
---|
| 707 | OnZoomChanged(this, EventArgs.Empty);
|
---|
| 708 | }
|
---|
[14131] | 709 |
|
---|
| 710 | private void chart_Resize(object sender, EventArgs e) {
|
---|
| 711 | UpdateTitlePosition();
|
---|
| 712 | }
|
---|
[14158] | 713 |
|
---|
| 714 | private void chart_PostPaint(object sender, ChartPaintEventArgs e) {
|
---|
| 715 | if (ChartPostPaint != null)
|
---|
| 716 | ChartPostPaint(this, EventArgs.Empty);
|
---|
| 717 | }
|
---|
[13817] | 718 | #endregion
|
---|
[13780] | 719 | }
|
---|
| 720 | }
|
---|
[14131] | 721 |
|
---|