Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionVariableImpactsView.Designer.cs @ 18242

Last change on this file since 18242 was 16057, checked in by jkarder, 6 years ago

#2839:

File size: 11.0 KB
RevLine 
[14348]1#region License Information
2/* HeuristicLab
[15583]3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[14348]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 {
[15638]22  partial class ClassificationSolutionVariableImpactsView {
[14348]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.variableImactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
47      this.dataPartitionComboBox = new System.Windows.Forms.ComboBox();
48      this.dataPartitionLabel = new System.Windows.Forms.Label();
[14826]49      this.numericVarReplacementLabel = new System.Windows.Forms.Label();
[14348]50      this.replacementComboBox = new System.Windows.Forms.ComboBox();
[14826]51      this.factorVarReplacementLabel = new System.Windows.Forms.Label();
52      this.factorVarReplComboBox = new System.Windows.Forms.ComboBox();
[15667]53      this.ascendingCheckBox = new System.Windows.Forms.CheckBox();
54      this.sortByLabel = new System.Windows.Forms.Label();
55      this.sortByComboBox = new System.Windows.Forms.ComboBox();
[16057]56      this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
[14348]57      this.SuspendLayout();
58      //
59      // variableImactsArrayView
60      //
61      this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
62            | System.Windows.Forms.AnchorStyles.Left)
63            | System.Windows.Forms.AnchorStyles.Right)));
64      this.variableImactsArrayView.Caption = "StringConvertibleArray View";
65      this.variableImactsArrayView.Content = null;
[14826]66      this.variableImactsArrayView.Location = new System.Drawing.Point(3, 84);
[14348]67      this.variableImactsArrayView.Name = "variableImactsArrayView";
68      this.variableImactsArrayView.ReadOnly = true;
[15667]69      this.variableImactsArrayView.Size = new System.Drawing.Size(662, 278);
[14826]70      this.variableImactsArrayView.TabIndex = 2;
[14348]71      //
72      // dataPartitionComboBox
73      //
[15667]74      this.dataPartitionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
[14348]75      this.dataPartitionComboBox.FormattingEnabled = true;
76      this.dataPartitionComboBox.Items.AddRange(new object[] {
[15638]77            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum.Training,
78            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum.Test,
79            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum.All});
[14826]80      this.dataPartitionComboBox.Location = new System.Drawing.Point(197, 3);
[14348]81      this.dataPartitionComboBox.Name = "dataPartitionComboBox";
82      this.dataPartitionComboBox.Size = new System.Drawing.Size(121, 21);
83      this.dataPartitionComboBox.TabIndex = 1;
84      this.dataPartitionComboBox.SelectedIndexChanged += new System.EventHandler(this.dataPartitionComboBox_SelectedIndexChanged);
85      //
86      // dataPartitionLabel
87      //
88      this.dataPartitionLabel.AutoSize = true;
89      this.dataPartitionLabel.Location = new System.Drawing.Point(3, 6);
90      this.dataPartitionLabel.Name = "dataPartitionLabel";
91      this.dataPartitionLabel.Size = new System.Drawing.Size(73, 13);
92      this.dataPartitionLabel.TabIndex = 0;
93      this.dataPartitionLabel.Text = "Data partition:";
94      //
[14826]95      // numericVarReplacementLabel
[14348]96      //
[14826]97      this.numericVarReplacementLabel.AutoSize = true;
98      this.numericVarReplacementLabel.Location = new System.Drawing.Point(3, 33);
99      this.numericVarReplacementLabel.Name = "numericVarReplacementLabel";
100      this.numericVarReplacementLabel.Size = new System.Drawing.Size(173, 13);
101      this.numericVarReplacementLabel.TabIndex = 2;
102      this.numericVarReplacementLabel.Text = "Replacement for numeric variables:";
[14348]103      //
104      // replacementComboBox
105      //
[15667]106      this.replacementComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
[14348]107      this.replacementComboBox.FormattingEnabled = true;
108      this.replacementComboBox.Items.AddRange(new object[] {
[15638]109            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum.Median,
110            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum.Average,
111            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum.Noise,
112            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum.Shuffle});
[14826]113      this.replacementComboBox.Location = new System.Drawing.Point(197, 30);
[14348]114      this.replacementComboBox.Name = "replacementComboBox";
115      this.replacementComboBox.Size = new System.Drawing.Size(121, 21);
116      this.replacementComboBox.TabIndex = 3;
117      this.replacementComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
118      //
[14826]119      // factorVarReplacementLabel
120      //
121      this.factorVarReplacementLabel.AutoSize = true;
122      this.factorVarReplacementLabel.Location = new System.Drawing.Point(3, 60);
123      this.factorVarReplacementLabel.Name = "factorVarReplacementLabel";
124      this.factorVarReplacementLabel.Size = new System.Drawing.Size(188, 13);
125      this.factorVarReplacementLabel.TabIndex = 0;
126      this.factorVarReplacementLabel.Text = "Replacement for categorical variables:";
127      //
128      // factorVarReplComboBox
129      //
[15667]130      this.factorVarReplComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
[14826]131      this.factorVarReplComboBox.FormattingEnabled = true;
132      this.factorVarReplComboBox.Items.AddRange(new object[] {
[15638]133            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Best,
134            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Mode,
135            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Shuffle});
[14826]136      this.factorVarReplComboBox.Location = new System.Drawing.Point(197, 57);
137      this.factorVarReplComboBox.Name = "factorVarReplComboBox";
138      this.factorVarReplComboBox.Size = new System.Drawing.Size(121, 21);
139      this.factorVarReplComboBox.TabIndex = 1;
140      this.factorVarReplComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
141      //
[15667]142      // ascendingCheckBox
143      //
144      this.ascendingCheckBox.AutoSize = true;
145      this.ascendingCheckBox.Location = new System.Drawing.Point(534, 6);
146      this.ascendingCheckBox.Name = "ascendingCheckBox";
147      this.ascendingCheckBox.Size = new System.Drawing.Size(76, 17);
148      this.ascendingCheckBox.TabIndex = 10;
149      this.ascendingCheckBox.Text = "Ascending";
150      this.ascendingCheckBox.UseVisualStyleBackColor = true;
151      this.ascendingCheckBox.CheckedChanged += new System.EventHandler(this.ascendingCheckBox_CheckedChanged);
152      //
153      // sortByLabel
154      //
155      this.sortByLabel.AutoSize = true;
156      this.sortByLabel.Location = new System.Drawing.Point(324, 6);
157      this.sortByLabel.Name = "sortByLabel";
158      this.sortByLabel.Size = new System.Drawing.Size(77, 13);
159      this.sortByLabel.TabIndex = 8;
160      this.sortByLabel.Text = "Sorting criteria:";
161      //
162      // sortByComboBox
163      //
164      this.sortByComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
165      this.sortByComboBox.FormattingEnabled = true;
166      this.sortByComboBox.Location = new System.Drawing.Point(407, 3);
167      this.sortByComboBox.Name = "sortByComboBox";
168      this.sortByComboBox.Size = new System.Drawing.Size(121, 21);
169      this.sortByComboBox.TabIndex = 9;
170      this.sortByComboBox.SelectedIndexChanged += new System.EventHandler(this.sortByComboBox_SelectedIndexChanged);
171      //
[15638]172      // ClassificationSolutionVariableImpactsView
[14348]173      //
174      this.AllowDrop = true;
175      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[15667]176      this.Controls.Add(this.ascendingCheckBox);
177      this.Controls.Add(this.sortByLabel);
178      this.Controls.Add(this.sortByComboBox);
[14826]179      this.Controls.Add(this.factorVarReplComboBox);
180      this.Controls.Add(this.factorVarReplacementLabel);
[14348]181      this.Controls.Add(this.replacementComboBox);
[14826]182      this.Controls.Add(this.numericVarReplacementLabel);
[14348]183      this.Controls.Add(this.dataPartitionLabel);
184      this.Controls.Add(this.dataPartitionComboBox);
185      this.Controls.Add(this.variableImactsArrayView);
[15638]186      this.Name = "ClassificationSolutionVariableImpactsView";
[15667]187      this.Size = new System.Drawing.Size(668, 365);
[16057]188      this.VisibleChanged += new System.EventHandler(this.ClassificationSolutionVariableImpactsView_VisibleChanged);
[14348]189      this.ResumeLayout(false);
190      this.PerformLayout();
191
192    }
193
194    #endregion
195
196    private Data.Views.StringConvertibleArrayView variableImactsArrayView;
197    private System.Windows.Forms.ComboBox dataPartitionComboBox;
198    private System.Windows.Forms.Label dataPartitionLabel;
[14826]199    private System.Windows.Forms.Label numericVarReplacementLabel;
[14348]200    private System.Windows.Forms.ComboBox replacementComboBox;
[14826]201    private System.Windows.Forms.Label factorVarReplacementLabel;
202    private System.Windows.Forms.ComboBox factorVarReplComboBox;
[15667]203    private System.Windows.Forms.CheckBox ascendingCheckBox;
204    private System.Windows.Forms.Label sortByLabel;
205    private System.Windows.Forms.ComboBox sortByComboBox;
[16057]206    private System.ComponentModel.BackgroundWorker backgroundWorker;
[14348]207  }
208}
Note: See TracBrowser for help on using the repository browser.