Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 15638 was 15638, checked in by bburlacu, 6 years ago

#2884: Implement variable impacts calculation and view for classification solutions.

File size: 8.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 ClassificationSolutionVariableImpactsView {
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();
49      this.numericVarReplacementLabel = new System.Windows.Forms.Label();
50      this.replacementComboBox = new System.Windows.Forms.ComboBox();
51      this.factorVarReplacementLabel = new System.Windows.Forms.Label();
52      this.factorVarReplComboBox = new System.Windows.Forms.ComboBox();
53      this.SuspendLayout();
54      //
55      // variableImactsArrayView
56      //
57      this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
58            | System.Windows.Forms.AnchorStyles.Left)
59            | System.Windows.Forms.AnchorStyles.Right)));
60      this.variableImactsArrayView.Caption = "StringConvertibleArray View";
61      this.variableImactsArrayView.Content = null;
62      this.variableImactsArrayView.Location = new System.Drawing.Point(3, 84);
63      this.variableImactsArrayView.Name = "variableImactsArrayView";
64      this.variableImactsArrayView.ReadOnly = true;
65      this.variableImactsArrayView.Size = new System.Drawing.Size(363, 278);
66      this.variableImactsArrayView.TabIndex = 2;
67      //
68      // dataPartitionComboBox
69      //
70      this.dataPartitionComboBox.FormattingEnabled = true;
71      this.dataPartitionComboBox.Items.AddRange(new object[] {
72            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum.Training,
73            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum.Test,
74            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum.All});
75      this.dataPartitionComboBox.Location = new System.Drawing.Point(197, 3);
76      this.dataPartitionComboBox.Name = "dataPartitionComboBox";
77      this.dataPartitionComboBox.Size = new System.Drawing.Size(121, 21);
78      this.dataPartitionComboBox.TabIndex = 1;
79      this.dataPartitionComboBox.SelectedIndexChanged += new System.EventHandler(this.dataPartitionComboBox_SelectedIndexChanged);
80      //
81      // dataPartitionLabel
82      //
83      this.dataPartitionLabel.AutoSize = true;
84      this.dataPartitionLabel.Location = new System.Drawing.Point(3, 6);
85      this.dataPartitionLabel.Name = "dataPartitionLabel";
86      this.dataPartitionLabel.Size = new System.Drawing.Size(73, 13);
87      this.dataPartitionLabel.TabIndex = 0;
88      this.dataPartitionLabel.Text = "Data partition:";
89      //
90      // numericVarReplacementLabel
91      //
92      this.numericVarReplacementLabel.AutoSize = true;
93      this.numericVarReplacementLabel.Location = new System.Drawing.Point(3, 33);
94      this.numericVarReplacementLabel.Name = "numericVarReplacementLabel";
95      this.numericVarReplacementLabel.Size = new System.Drawing.Size(173, 13);
96      this.numericVarReplacementLabel.TabIndex = 2;
97      this.numericVarReplacementLabel.Text = "Replacement for numeric variables:";
98      //
99      // replacementComboBox
100      //
101      this.replacementComboBox.FormattingEnabled = true;
102      this.replacementComboBox.Items.AddRange(new object[] {
103            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum.Median,
104            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum.Average,
105            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum.Noise,
106            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.ReplacementMethodEnum.Shuffle});
107      this.replacementComboBox.Location = new System.Drawing.Point(197, 30);
108      this.replacementComboBox.Name = "replacementComboBox";
109      this.replacementComboBox.Size = new System.Drawing.Size(121, 21);
110      this.replacementComboBox.TabIndex = 3;
111      this.replacementComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
112      //
113      // factorVarReplacementLabel
114      //
115      this.factorVarReplacementLabel.AutoSize = true;
116      this.factorVarReplacementLabel.Location = new System.Drawing.Point(3, 60);
117      this.factorVarReplacementLabel.Name = "factorVarReplacementLabel";
118      this.factorVarReplacementLabel.Size = new System.Drawing.Size(188, 13);
119      this.factorVarReplacementLabel.TabIndex = 0;
120      this.factorVarReplacementLabel.Text = "Replacement for categorical variables:";
121      //
122      // factorVarReplComboBox
123      //
124      this.factorVarReplComboBox.FormattingEnabled = true;
125      this.factorVarReplComboBox.Items.AddRange(new object[] {
126            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Best,
127            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Mode,
128            HeuristicLab.Problems.DataAnalysis.ClassificationSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Shuffle});
129      this.factorVarReplComboBox.Location = new System.Drawing.Point(197, 57);
130      this.factorVarReplComboBox.Name = "factorVarReplComboBox";
131      this.factorVarReplComboBox.Size = new System.Drawing.Size(121, 21);
132      this.factorVarReplComboBox.TabIndex = 1;
133      this.factorVarReplComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
134      //
135      // ClassificationSolutionVariableImpactsView
136      //
137      this.AllowDrop = true;
138      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
139      this.Controls.Add(this.factorVarReplComboBox);
140      this.Controls.Add(this.factorVarReplacementLabel);
141      this.Controls.Add(this.replacementComboBox);
142      this.Controls.Add(this.numericVarReplacementLabel);
143      this.Controls.Add(this.dataPartitionLabel);
144      this.Controls.Add(this.dataPartitionComboBox);
145      this.Controls.Add(this.variableImactsArrayView);
146      this.Name = "ClassificationSolutionVariableImpactsView";
147      this.Size = new System.Drawing.Size(369, 365);
148      this.ResumeLayout(false);
149      this.PerformLayout();
150
151    }
152
153    #endregion
154
155    private Data.Views.StringConvertibleArrayView variableImactsArrayView;
156    private System.Windows.Forms.ComboBox dataPartitionComboBox;
157    private System.Windows.Forms.Label dataPartitionLabel;
158    private System.Windows.Forms.Label numericVarReplacementLabel;
159    private System.Windows.Forms.ComboBox replacementComboBox;
160    private System.Windows.Forms.Label factorVarReplacementLabel;
161    private System.Windows.Forms.ComboBox factorVarReplComboBox;
162  }
163}
Note: See TracBrowser for help on using the repository browser.