[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] | 22 | using System.Collections.Generic;
|
---|
[10539] | 23 | using System.Drawing;
|
---|
[10987] | 24 | using HeuristicLab.Analysis;
|
---|
[10539] | 25 | using HeuristicLab.Common;
|
---|
[10245] | 26 | using HeuristicLab.Core;
|
---|
[10992] | 27 | using HeuristicLab.DataPreprocessing.Interfaces;
|
---|
[10242] | 28 |
|
---|
[10539] | 29 | namespace HeuristicLab.DataPreprocessing {
|
---|
[10709] | 30 |
|
---|
[10882] | 31 | [Item("ScatterPlot", "Represents a scatter plot.")]
|
---|
[10992] | 32 | public class ScatterPlotContent : PreprocessingChartContent {
|
---|
[10252] | 33 |
|
---|
[10915] | 34 | public string SelectedXVariable { get; set; }
|
---|
| 35 | public string SelectedYVariable { get; set; }
|
---|
| 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;
|
---|
[10245] | 45 | }
|
---|
[11001] | 46 |
|
---|
| 47 | public static new Image StaticItemImage
|
---|
| 48 | {
|
---|
| 49 | get { return HeuristicLab.Common.Resources.VSImageLibrary.Performance; }
|
---|
| 50 | }
|
---|
| 51 |
|
---|
[10987] | 52 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 53 | return new ScatterPlotContent(this, cloner);
|
---|
| 54 | }
|
---|
[10245] | 55 |
|
---|
[10987] | 56 | public ScatterPlot CreateScatterPlot(string variableNameX, string variableNameY) {
|
---|
| 57 | ScatterPlot scatterPlot = new ScatterPlot();
|
---|
| 58 |
|
---|
[10992] | 59 | IList<double> xValues = PreprocessingData.GetValues<double>(PreprocessingData.GetColumnIndex(variableNameX));
|
---|
| 60 | IList<double> yValues = PreprocessingData.GetValues<double>(PreprocessingData.GetColumnIndex(variableNameY));
|
---|
[10987] | 61 |
|
---|
| 62 | List<Point2D<double>> points = new List<Point2D<double>>();
|
---|
| 63 |
|
---|
| 64 | for (int i = 0; i < xValues.Count; i++) {
|
---|
| 65 | Point2D<double> point = new Point2D<double>(xValues[i], yValues[i]);
|
---|
| 66 | points.Add(point);
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | ScatterPlotDataRow scdr = new ScatterPlotDataRow(variableNameX + " - " + variableNameY, "", points);
|
---|
| 70 | scatterPlot.Rows.Add(scdr);
|
---|
| 71 | return scatterPlot;
|
---|
| 72 | }
|
---|
[10242] | 73 | }
|
---|
| 74 | }
|
---|