[13502] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[13502] | 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;
|
---|
[10882] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Analysis;
|
---|
| 26 | using HeuristicLab.Core.Views;
|
---|
| 27 | using HeuristicLab.MainForm;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.DataPreprocessing.Views {
|
---|
| 30 |
|
---|
[10987] | 31 | [View("Scatter Plot Single View")]
|
---|
[10952] | 32 | [Content(typeof(ScatterPlotContent), true)]
|
---|
[10987] | 33 | public partial class ScatterPlotSingleView : ItemView {
|
---|
[10882] | 34 |
|
---|
| 35 | public new ScatterPlotContent Content {
|
---|
| 36 | get { return (ScatterPlotContent)base.Content; }
|
---|
| 37 | set { base.Content = value; }
|
---|
| 38 | }
|
---|
| 39 |
|
---|
[13502] | 40 | public ScatterPlotSingleView() {
|
---|
[10998] | 41 | InitializeComponent();
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[10882] | 44 | public void InitData() {
|
---|
[10992] | 45 | IEnumerable<string> variables = Content.PreprocessingData.GetDoubleVariableNames();
|
---|
[10972] | 46 |
|
---|
| 47 | // add variables to combo boxes
|
---|
[10882] | 48 | comboBoxXVariable.Items.Clear();
|
---|
| 49 | comboBoxYVariable.Items.Clear();
|
---|
[13502] | 50 | comboBoxColor.Items.Clear();
|
---|
[10882] | 51 | comboBoxXVariable.Items.AddRange(variables.ToArray());
|
---|
| 52 | comboBoxYVariable.Items.AddRange(variables.ToArray());
|
---|
[13502] | 53 | comboBoxColor.Items.Add("-");
|
---|
| 54 | for (int i = 0; i < Content.PreprocessingData.Columns; ++i) {
|
---|
| 55 | if (Content.PreprocessingData.VariableHasType<double>(i)) {
|
---|
| 56 | double distinctValueCount = Content.PreprocessingData.GetValues<double>(i).GroupBy(x => x).Count();
|
---|
| 57 | if (distinctValueCount <= 20)
|
---|
| 58 | comboBoxColor.Items.Add(Content.PreprocessingData.GetVariableName(i));
|
---|
| 59 | }
|
---|
| 60 | }
|
---|
[10882] | 61 |
|
---|
[10952] | 62 | // use x and y variable from content
|
---|
[13502] | 63 | if (Content.SelectedXVariable != null && Content.SelectedYVariable != null && Content.SelectedColorVariable != null) {
|
---|
[10952] | 64 | comboBoxXVariable.SelectedItem = Content.SelectedXVariable;
|
---|
| 65 | comboBoxYVariable.SelectedItem = Content.SelectedYVariable;
|
---|
[13502] | 66 | comboBoxColor.SelectedItem = Content.SelectedColorVariable;
|
---|
[10952] | 67 | } else {
|
---|
| 68 | if (variables.Count() >= 2) {
|
---|
| 69 | comboBoxXVariable.SelectedIndex = 0;
|
---|
| 70 | comboBoxYVariable.SelectedIndex = 1;
|
---|
[13502] | 71 | comboBoxColor.SelectedIndex = 0;
|
---|
[10952] | 72 | UpdateScatterPlot();
|
---|
| 73 | }
|
---|
[10882] | 74 | }
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | protected override void OnContentChanged() {
|
---|
| 78 | base.OnContentChanged();
|
---|
| 79 | if (Content != null) {
|
---|
| 80 | InitData();
|
---|
| 81 | }
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | private void comboBox_SelectedIndexChanged(object sender, EventArgs e) {
|
---|
| 85 | UpdateScatterPlot();
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | private void UpdateScatterPlot() {
|
---|
[13502] | 89 | if (comboBoxXVariable.SelectedItem != null && comboBoxYVariable.SelectedItem != null && comboBoxColor.SelectedItem != null) {
|
---|
[10972] | 90 | //get scatter plot with selected x and y variable
|
---|
[13502] | 91 | ScatterPlot scatterPlot = Content.CreateScatterPlot(
|
---|
| 92 | (string)comboBoxXVariable.SelectedItem,
|
---|
| 93 | (string)comboBoxYVariable.SelectedItem,
|
---|
| 94 | (string)comboBoxColor.SelectedItem);
|
---|
[10882] | 95 | scatterPlotView.Content = scatterPlot;
|
---|
[10952] | 96 |
|
---|
| 97 | //save selected x and y variable in content
|
---|
| 98 | this.Content.SelectedXVariable = (string)comboBoxXVariable.SelectedItem;
|
---|
| 99 | this.Content.SelectedYVariable = (string)comboBoxYVariable.SelectedItem;
|
---|
[13502] | 100 | this.Content.SelectedColorVariable = (string)comboBoxColor.SelectedItem;
|
---|
[10882] | 101 | }
|
---|
| 102 | }
|
---|
| 103 | }
|
---|
| 104 | }
|
---|