Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.Designer.cs @ 15665

Last change on this file since 15665 was 15665, checked in by fholzing, 6 years ago

#2871: Implemented review-issues

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