Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2870_AutoDiff-nuget/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.Designer.cs

Last change on this file was 15637, checked in by fholzing, 7 years ago

#2871: Included the points from the review (added third sorting-possibility, renamed the existing ones, added default-behavior)

File size: 10.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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
21namespace HeuristicLab.Problems.DataAnalysis.Views {
22  partial class RegressionSolutionVariableImpactsView {
23    /// <summary>
24    /// Required designer variable.
25    /// </summary>
26    private System.ComponentModel.IContainer components = null;
27
28    /// <summary>
29    /// Clean up any resources being used.
30    /// </summary>
31    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
32    protected override void Dispose(bool disposing) {
33      if (disposing && (components != null)) {
34        components.Dispose();
35      }
36      base.Dispose(disposing);
37    }
38
39    #region Component Designer generated code
40
41    /// <summary>
42    /// Required method for Designer support - do not modify
43    /// the contents of this method with the code editor.
44    /// </summary>
45    private void InitializeComponent() {
46      this.ascendingCheckBox = new System.Windows.Forms.CheckBox();
47      this.sortByLabel = new System.Windows.Forms.Label();
48      this.sortByComboBox = new System.Windows.Forms.ComboBox();
49      this.factorVarReplComboBox = new System.Windows.Forms.ComboBox();
50      this.factorVarReplacementLabel = new System.Windows.Forms.Label();
51      this.replacementComboBox = new System.Windows.Forms.ComboBox();
52      this.numericVarReplacementLabel = new System.Windows.Forms.Label();
53      this.dataPartitionLabel = new System.Windows.Forms.Label();
54      this.dataPartitionComboBox = new System.Windows.Forms.ComboBox();
55      this.variableImactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
56      this.SuspendLayout();
57      //
58      // ascendingCheckBox
59      //
60      this.ascendingCheckBox.AutoSize = true;
61      this.ascendingCheckBox.Location = new System.Drawing.Point(534, 6);
62      this.ascendingCheckBox.Name = "ascendingCheckBox";
63      this.ascendingCheckBox.Size = new System.Drawing.Size(76, 17);
64      this.ascendingCheckBox.TabIndex = 7;
65      this.ascendingCheckBox.Text = "Ascending";
66      this.ascendingCheckBox.UseVisualStyleBackColor = true;
67      this.ascendingCheckBox.CheckedChanged += new System.EventHandler(this.ascendingCheckBox_CheckedChanged);
68      //
69      // sortByLabel
70      //
71      this.sortByLabel.AutoSize = true;
72      this.sortByLabel.Location = new System.Drawing.Point(324, 6);
73      this.sortByLabel.Name = "sortByLabel";
74      this.sortByLabel.Size = new System.Drawing.Size(77, 13);
75      this.sortByLabel.TabIndex = 4;
76      this.sortByLabel.Text = "Sorting criteria:";
77      //
78      // sortByComboBox
79      //
80      this.sortByComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
81      this.sortByComboBox.FormattingEnabled = true;
82      this.sortByComboBox.Items.AddRange(new object[] {
83            "Impact Value",
84            "Occurrence",
85            "Variable Name"});
86      this.sortByComboBox.Location = new System.Drawing.Point(407, 3);
87      this.sortByComboBox.Name = "sortByComboBox";
88      this.sortByComboBox.Size = new System.Drawing.Size(121, 21);
89      this.sortByComboBox.TabIndex = 5;
90      this.sortByComboBox.SelectedIndexChanged += new System.EventHandler(this.sortByComboBox_SelectedIndexChanged);
91      //
92      // factorVarReplComboBox
93      //
94      this.factorVarReplComboBox.FormattingEnabled = true;
95      this.factorVarReplComboBox.Items.AddRange(new object[] {
96            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Best,
97            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Mode,
98            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Shuffle});
99      this.factorVarReplComboBox.Location = new System.Drawing.Point(197, 57);
100      this.factorVarReplComboBox.Name = "factorVarReplComboBox";
101      this.factorVarReplComboBox.Size = new System.Drawing.Size(121, 21);
102      this.factorVarReplComboBox.TabIndex = 1;
103      this.factorVarReplComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
104      //
105      // factorVarReplacementLabel
106      //
107      this.factorVarReplacementLabel.AutoSize = true;
108      this.factorVarReplacementLabel.Location = new System.Drawing.Point(3, 60);
109      this.factorVarReplacementLabel.Name = "factorVarReplacementLabel";
110      this.factorVarReplacementLabel.Size = new System.Drawing.Size(188, 13);
111      this.factorVarReplacementLabel.TabIndex = 0;
112      this.factorVarReplacementLabel.Text = "Replacement for categorical variables:";
113      //
114      // replacementComboBox
115      //
116      this.replacementComboBox.FormattingEnabled = true;
117      this.replacementComboBox.Items.AddRange(new object[] {
118            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Median,
119            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Average,
120            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Noise,
121            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Shuffle});
122      this.replacementComboBox.Location = new System.Drawing.Point(197, 30);
123      this.replacementComboBox.Name = "replacementComboBox";
124      this.replacementComboBox.Size = new System.Drawing.Size(121, 21);
125      this.replacementComboBox.TabIndex = 3;
126      this.replacementComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
127      //
128      // numericVarReplacementLabel
129      //
130      this.numericVarReplacementLabel.AutoSize = true;
131      this.numericVarReplacementLabel.Location = new System.Drawing.Point(3, 33);
132      this.numericVarReplacementLabel.Name = "numericVarReplacementLabel";
133      this.numericVarReplacementLabel.Size = new System.Drawing.Size(173, 13);
134      this.numericVarReplacementLabel.TabIndex = 2;
135      this.numericVarReplacementLabel.Text = "Replacement for numeric variables:";
136      //
137      // dataPartitionLabel
138      //
139      this.dataPartitionLabel.AutoSize = true;
140      this.dataPartitionLabel.Location = new System.Drawing.Point(3, 6);
141      this.dataPartitionLabel.Name = "dataPartitionLabel";
142      this.dataPartitionLabel.Size = new System.Drawing.Size(73, 13);
143      this.dataPartitionLabel.TabIndex = 0;
144      this.dataPartitionLabel.Text = "Data partition:";
145      //
146      // dataPartitionComboBox
147      //
148      this.dataPartitionComboBox.FormattingEnabled = true;
149      this.dataPartitionComboBox.Items.AddRange(new object[] {
150            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.Training,
151            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.Test,
152            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.All});
153      this.dataPartitionComboBox.Location = new System.Drawing.Point(197, 3);
154      this.dataPartitionComboBox.Name = "dataPartitionComboBox";
155      this.dataPartitionComboBox.Size = new System.Drawing.Size(121, 21);
156      this.dataPartitionComboBox.TabIndex = 1;
157      this.dataPartitionComboBox.SelectedIndexChanged += new System.EventHandler(this.dataPartitionComboBox_SelectedIndexChanged);
158      //
159      // variableImactsArrayView
160      //
161      this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
162            | System.Windows.Forms.AnchorStyles.Left)
163            | System.Windows.Forms.AnchorStyles.Right)));
164      this.variableImactsArrayView.Caption = "StringConvertibleArray View";
165      this.variableImactsArrayView.Content = null;
166      this.variableImactsArrayView.Location = new System.Drawing.Point(3, 84);
167      this.variableImactsArrayView.Name = "variableImactsArrayView";
168      this.variableImactsArrayView.ReadOnly = true;
169      this.variableImactsArrayView.Size = new System.Drawing.Size(706, 278);
170      this.variableImactsArrayView.TabIndex = 2;
171      //
172      // RegressionSolutionVariableImpactsView
173      //
174      this.AllowDrop = true;
175      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
176      this.Controls.Add(this.ascendingCheckBox);
177      this.Controls.Add(this.sortByLabel);
178      this.Controls.Add(this.sortByComboBox);
179      this.Controls.Add(this.factorVarReplComboBox);
180      this.Controls.Add(this.factorVarReplacementLabel);
181      this.Controls.Add(this.replacementComboBox);
182      this.Controls.Add(this.numericVarReplacementLabel);
183      this.Controls.Add(this.dataPartitionLabel);
184      this.Controls.Add(this.dataPartitionComboBox);
185      this.Controls.Add(this.variableImactsArrayView);
186      this.Name = "RegressionSolutionVariableImpactsView";
187      this.Size = new System.Drawing.Size(712, 365);
188      this.ResumeLayout(false);
189      this.PerformLayout();
190
191    }
192
193    #endregion
194
195    private Data.Views.StringConvertibleArrayView variableImactsArrayView;
196    private System.Windows.Forms.ComboBox dataPartitionComboBox;
197    private System.Windows.Forms.Label dataPartitionLabel;
198    private System.Windows.Forms.Label numericVarReplacementLabel;
199    private System.Windows.Forms.ComboBox replacementComboBox;
200    private System.Windows.Forms.Label factorVarReplacementLabel;
201    private System.Windows.Forms.ComboBox factorVarReplComboBox;
202    private System.Windows.Forms.Label sortByLabel;
203    private System.Windows.Forms.ComboBox sortByComboBox;
204    private System.Windows.Forms.CheckBox ascendingCheckBox;
205  }
206}
Note: See TracBrowser for help on using the repository browser.