Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2582 created branch for Hive Web Job Manager

File size: 3.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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
22using System.Collections.Generic;
23using System.Linq;
24using HeuristicLab.Analysis;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27
28namespace HeuristicLab.DataPreprocessing {
29
30  [Item("ScatterPlot", "Represents a scatter plot.")]
31  public class ScatterPlotContent : PreprocessingChartContent {
32
33    public string SelectedXVariable { get; set; }
34    public string SelectedYVariable { get; set; }
35    public string SelectedColorVariable { get; set; }
36
37    public ScatterPlotContent(IFilteredPreprocessingData preprocessingData)
38      : base(preprocessingData) {
39    }
40
41    public ScatterPlotContent(ScatterPlotContent content, Cloner cloner)
42      : base(content, cloner) {
43      this.SelectedXVariable = content.SelectedXVariable;
44      this.SelectedYVariable = content.SelectedYVariable;
45      this.SelectedColorVariable = content.SelectedColorVariable;
46    }
47
48
49
50    public override IDeepCloneable Clone(Cloner cloner) {
51      return new ScatterPlotContent(this, cloner);
52    }
53
54    public ScatterPlot CreateScatterPlot(string variableNameX, string variableNameY, string variableNameColor = "-") {
55      ScatterPlot scatterPlot = new ScatterPlot();
56
57      IList<double> xValues = PreprocessingData.GetValues<double>(PreprocessingData.GetColumnIndex(variableNameX));
58      IList<double> yValues = PreprocessingData.GetValues<double>(PreprocessingData.GetColumnIndex(variableNameY));
59      if (variableNameColor == null || variableNameColor == "-") {
60        List<Point2D<double>> points = new List<Point2D<double>>();
61
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        }
66
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        }
86      }
87      return scatterPlot;
88    }
89  }
90}
Note: See TracBrowser for help on using the repository browser.