Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionVariableImpactsView.Designer.cs @ 15667

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

#2884: Added sorting mechanism (see #2871)

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