Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.DataPreprocessing/3.4/Content/ScatterPlotContent.cs @ 18242

Last change on this file since 18242 was 13656, checked in by ascheibe, 9 years ago

#2582 created branch for Hive Web Job Manager

File size: 3.6 KB
RevLine 
[10539]1#region License Information
2/* HeuristicLab
[12012]3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[10539]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
[10987]22using System.Collections.Generic;
[13502]23using System.Linq;
[10987]24using HeuristicLab.Analysis;
[10539]25using HeuristicLab.Common;
[10245]26using HeuristicLab.Core;
[10242]27
[10539]28namespace HeuristicLab.DataPreprocessing {
[10709]29
[10882]30  [Item("ScatterPlot", "Represents a scatter plot.")]
[10992]31  public class ScatterPlotContent : PreprocessingChartContent {
[10252]32
[10915]33    public string SelectedXVariable { get; set; }
34    public string SelectedYVariable { get; set; }
[13502]35    public string SelectedColorVariable { get; set; }
[10915]36
[10992]37    public ScatterPlotContent(IFilteredPreprocessingData preprocessingData)
38      : base(preprocessingData) {
[10252]39    }
40
[10882]41    public ScatterPlotContent(ScatterPlotContent content, Cloner cloner)
[10539]42      : base(content, cloner) {
[10987]43      this.SelectedXVariable = content.SelectedXVariable;
44      this.SelectedYVariable = content.SelectedYVariable;
[13502]45      this.SelectedColorVariable = content.SelectedColorVariable;
[10245]46    }
[11001]47
48
[13656]49
[10987]50    public override IDeepCloneable Clone(Cloner cloner) {
51      return new ScatterPlotContent(this, cloner);
52    }
[10245]53
[13502]54    public ScatterPlot CreateScatterPlot(string variableNameX, string variableNameY, string variableNameColor = "-") {
[10987]55      ScatterPlot scatterPlot = new ScatterPlot();
56
[10992]57      IList<double> xValues = PreprocessingData.GetValues<double>(PreprocessingData.GetColumnIndex(variableNameX));
58      IList<double> yValues = PreprocessingData.GetValues<double>(PreprocessingData.GetColumnIndex(variableNameY));
[13502]59      if (variableNameColor == null || variableNameColor == "-") {
60        List<Point2D<double>> points = new List<Point2D<double>>();
[10987]61
[13502]62        for (int i = 0; i < xValues.Count; i++) {
63          Point2D<double> point = new Point2D<double>(xValues[i], yValues[i]);
64          points.Add(point);
65        }
[10987]66
[13502]67        ScatterPlotDataRow scdr = new ScatterPlotDataRow(variableNameX + " - " + variableNameY, "", points);
68        scatterPlot.Rows.Add(scdr);
69
70      } else {
71        var colorValues = PreprocessingData.GetValues<double>(PreprocessingData.GetColumnIndex(variableNameColor));
72        var data = xValues.Zip(yValues, (x, y) => new { x, y }).Zip(colorValues, (v, c) => new { v.x, v.y, c }).ToList();
73        var gradients = ColorGradient.Colors;
74        int curGradient = 0;
75        int numColors = colorValues.Distinct().Count();
76        foreach (var colorValue in colorValues.Distinct()) {
77          var values = data.Where(x => x.c == colorValue);
78          var row = new ScatterPlotDataRow(
79            variableNameX + " - " + variableNameY + " (" + colorValue + ")",
80            "",
81            values.Select(v => new Point2D<double>(v.x, v.y)),
82            new ScatterPlotDataRowVisualProperties() { Color = gradients[curGradient] });
83          curGradient += gradients.Count / numColors;
84          scatterPlot.Rows.Add(row);
85        }
[10987]86      }
87      return scatterPlot;
88    }
[10242]89  }
90}
Note: See TracBrowser for help on using the repository browser.