Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2871: Implemented review

File size: 10.9 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
21
22using System;
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      this.sortByComboBox.DataSource = Enum.GetValues(typeof(SortingCriteria));
91      //
92      // factorVarReplComboBox
93      //
94      this.factorVarReplComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
95      this.factorVarReplComboBox.FormattingEnabled = true;
96      this.factorVarReplComboBox.Items.AddRange(new object[] {
97            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Best,
98            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Mode,
99            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Shuffle});
100      this.factorVarReplComboBox.Location = new System.Drawing.Point(197, 57);
101      this.factorVarReplComboBox.Name = "factorVarReplComboBox";
102      this.factorVarReplComboBox.Size = new System.Drawing.Size(121, 21);
103      this.factorVarReplComboBox.TabIndex = 1;
104      this.factorVarReplComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
105      //
106      // factorVarReplacementLabel
107      //
108      this.factorVarReplacementLabel.AutoSize = true;
109      this.factorVarReplacementLabel.Location = new System.Drawing.Point(3, 60);
110      this.factorVarReplacementLabel.Name = "factorVarReplacementLabel";
111      this.factorVarReplacementLabel.Size = new System.Drawing.Size(188, 13);
112      this.factorVarReplacementLabel.TabIndex = 0;
113      this.factorVarReplacementLabel.Text = "Replacement for categorical variables:";
114      //
115      // replacementComboBox
116      //
117      this.replacementComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
118      this.replacementComboBox.FormattingEnabled = true;
119      this.replacementComboBox.Items.AddRange(new object[] {
120            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Median,
121            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Average,
122            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Noise,
123            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Shuffle});
124      this.replacementComboBox.Location = new System.Drawing.Point(197, 30);
125      this.replacementComboBox.Name = "replacementComboBox";
126      this.replacementComboBox.Size = new System.Drawing.Size(121, 21);
127      this.replacementComboBox.TabIndex = 3;
128      this.replacementComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
129      //
130      // numericVarReplacementLabel
131      //
132      this.numericVarReplacementLabel.AutoSize = true;
133      this.numericVarReplacementLabel.Location = new System.Drawing.Point(3, 33);
134      this.numericVarReplacementLabel.Name = "numericVarReplacementLabel";
135      this.numericVarReplacementLabel.Size = new System.Drawing.Size(173, 13);
136      this.numericVarReplacementLabel.TabIndex = 2;
137      this.numericVarReplacementLabel.Text = "Replacement for numeric variables:";
138      //
139      // dataPartitionLabel
140      //
141      this.dataPartitionLabel.AutoSize = true;
142      this.dataPartitionLabel.Location = new System.Drawing.Point(3, 6);
143      this.dataPartitionLabel.Name = "dataPartitionLabel";
144      this.dataPartitionLabel.Size = new System.Drawing.Size(73, 13);
145      this.dataPartitionLabel.TabIndex = 0;
146      this.dataPartitionLabel.Text = "Data partition:";
147      //
148      // dataPartitionComboBox
149      //
150      this.dataPartitionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
151      this.dataPartitionComboBox.FormattingEnabled = true;
152      this.dataPartitionComboBox.Items.AddRange(new object[] {
153            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.Training,
154            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.Test,
155            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.All});
156      this.dataPartitionComboBox.Location = new System.Drawing.Point(197, 3);
157      this.dataPartitionComboBox.Name = "dataPartitionComboBox";
158      this.dataPartitionComboBox.Size = new System.Drawing.Size(121, 21);
159      this.dataPartitionComboBox.TabIndex = 1;
160      this.dataPartitionComboBox.SelectedIndexChanged += new System.EventHandler(this.dataPartitionComboBox_SelectedIndexChanged);
161      //
162      // variableImactsArrayView
163      //
164      this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
165            | System.Windows.Forms.AnchorStyles.Left)
166            | System.Windows.Forms.AnchorStyles.Right)));
167      this.variableImactsArrayView.Caption = "StringConvertibleArray View";
168      this.variableImactsArrayView.Content = null;
169      this.variableImactsArrayView.Location = new System.Drawing.Point(3, 84);
170      this.variableImactsArrayView.Name = "variableImactsArrayView";
171      this.variableImactsArrayView.ReadOnly = true;
172      this.variableImactsArrayView.Size = new System.Drawing.Size(706, 278);
173      this.variableImactsArrayView.TabIndex = 2;
174      //
175      // RegressionSolutionVariableImpactsView
176      //
177      this.AllowDrop = true;
178      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
179      this.Controls.Add(this.ascendingCheckBox);
180      this.Controls.Add(this.sortByLabel);
181      this.Controls.Add(this.sortByComboBox);
182      this.Controls.Add(this.factorVarReplComboBox);
183      this.Controls.Add(this.factorVarReplacementLabel);
184      this.Controls.Add(this.replacementComboBox);
185      this.Controls.Add(this.numericVarReplacementLabel);
186      this.Controls.Add(this.dataPartitionLabel);
187      this.Controls.Add(this.dataPartitionComboBox);
188      this.Controls.Add(this.variableImactsArrayView);
189      this.Name = "RegressionSolutionVariableImpactsView";
190      this.Size = new System.Drawing.Size(712, 365);
191      this.VisibleChanged += new System.EventHandler(this.RegressionSolutionVariableImpactsView_VisibleChanged);
192      this.ResumeLayout(false);
193      this.PerformLayout();
194
195    }
196
197    #endregion
198
199    private Data.Views.StringConvertibleArrayView variableImactsArrayView;
200    private System.Windows.Forms.ComboBox dataPartitionComboBox;
201    private System.Windows.Forms.Label dataPartitionLabel;
202    private System.Windows.Forms.Label numericVarReplacementLabel;
203    private System.Windows.Forms.ComboBox replacementComboBox;
204    private System.Windows.Forms.Label factorVarReplacementLabel;
205    private System.Windows.Forms.ComboBox factorVarReplComboBox;
206    private System.Windows.Forms.Label sortByLabel;
207    private System.Windows.Forms.ComboBox sortByComboBox;
208    private System.Windows.Forms.CheckBox ascendingCheckBox;
209  }
210}
Note: See TracBrowser for help on using the repository browser.