Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.DataPreprocessing.Views/3.4/ManipulationView.Designer.cs @ 11403

Last change on this file since 11403 was 11381, checked in by bburlacu, 10 years ago

#2245: Forgot to commit changes to ManipulationView.cs.

File size: 31.9 KB
Line 
1namespace HeuristicLab.DataPreprocessing.Views {
2  partial class ManipulationView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.lstMethods = new System.Windows.Forms.ListBox();
27      this.btnApply = new System.Windows.Forms.Button();
28      this.grpBoxData = new System.Windows.Forms.GroupBox();
29      this.tabsData = new System.Windows.Forms.TabControl();
30      this.tabPage1 = new System.Windows.Forms.TabPage();
31      this.label7 = new System.Windows.Forms.Label();
32      this.tabDataDeleteColumnsInformation = new System.Windows.Forms.TabPage();
33      this.label2 = new System.Windows.Forms.Label();
34      this.txtDeleteColumnsInfo = new System.Windows.Forms.TextBox();
35      this.label1 = new System.Windows.Forms.Label();
36      this.tabDataDeleteColumnsVariance = new System.Windows.Forms.TabPage();
37      this.txtDeleteColumnsVariance = new System.Windows.Forms.TextBox();
38      this.label4 = new System.Windows.Forms.Label();
39      this.tabDataDeleteRowsInfo = new System.Windows.Forms.TabPage();
40      this.label3 = new System.Windows.Forms.Label();
41      this.txtDeleteRowsInfo = new System.Windows.Forms.TextBox();
42      this.label5 = new System.Windows.Forms.Label();
43      this.tabReplaceMissingValues = new System.Windows.Forms.TabPage();
44      this.txtReplaceValue = new System.Windows.Forms.TextBox();
45      this.cmbVariableNames = new System.Windows.Forms.ComboBox();
46      this.cmbReplaceWith = new System.Windows.Forms.ComboBox();
47      this.lblValueColon = new System.Windows.Forms.Label();
48      this.label8 = new System.Windows.Forms.Label();
49      this.label10 = new System.Windows.Forms.Label();
50      this.tabDataShuffle = new System.Windows.Forms.TabPage();
51      this.lblShuffleProperties = new System.Windows.Forms.Label();
52      this.grpBoxPreview = new System.Windows.Forms.GroupBox();
53      this.tabsPreview = new System.Windows.Forms.TabControl();
54      this.tabPreviewInactive = new System.Windows.Forms.TabPage();
55      this.lblPreviewInActive = new System.Windows.Forms.Label();
56      this.tabPreviewDeleteColumnsInfo = new System.Windows.Forms.TabPage();
57      this.lblPreviewColumnsInfo = new System.Windows.Forms.Label();
58      this.tabPreviewDeleteColumnsVariance = new System.Windows.Forms.TabPage();
59      this.label12 = new System.Windows.Forms.Label();
60      this.lblPreviewColumnsVariance = new System.Windows.Forms.Label();
61      this.tabPreviewDeleteRowsInfo = new System.Windows.Forms.TabPage();
62      this.lblPreviewRowsInfo = new System.Windows.Forms.Label();
63      this.tabPreviewReplaceMissingValues = new System.Windows.Forms.TabPage();
64      this.lblPreviewReplaceMissingValues = new System.Windows.Forms.Label();
65      this.tabPreviewShuffle = new System.Windows.Forms.TabPage();
66      this.lblPreviewShuffle = new System.Windows.Forms.Label();
67      this.label9 = new System.Windows.Forms.Label();
68      this.shuffleSeparatelyCheckbox = new System.Windows.Forms.CheckBox();
69      this.grpBoxData.SuspendLayout();
70      this.tabsData.SuspendLayout();
71      this.tabPage1.SuspendLayout();
72      this.tabDataDeleteColumnsInformation.SuspendLayout();
73      this.tabDataDeleteColumnsVariance.SuspendLayout();
74      this.tabDataDeleteRowsInfo.SuspendLayout();
75      this.tabReplaceMissingValues.SuspendLayout();
76      this.tabDataShuffle.SuspendLayout();
77      this.grpBoxPreview.SuspendLayout();
78      this.tabsPreview.SuspendLayout();
79      this.tabPreviewInactive.SuspendLayout();
80      this.tabPreviewDeleteColumnsInfo.SuspendLayout();
81      this.tabPreviewDeleteColumnsVariance.SuspendLayout();
82      this.tabPreviewDeleteRowsInfo.SuspendLayout();
83      this.tabPreviewReplaceMissingValues.SuspendLayout();
84      this.tabPreviewShuffle.SuspendLayout();
85      this.SuspendLayout();
86      //
87      // lstMethods
88      //
89      this.lstMethods.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
90            | System.Windows.Forms.AnchorStyles.Right)));
91      this.lstMethods.FormattingEnabled = true;
92      this.lstMethods.Items.AddRange(new object[] {
93            "Delete Columns with insufficient Information",
94            "Delete Columns with insufficient Variance",
95            "Delete Rows with insufficient Information",
96            "Replace Missing Values",
97            "Shuffle Data"});
98      this.lstMethods.Location = new System.Drawing.Point(3, 3);
99      this.lstMethods.Name = "lstMethods";
100      this.lstMethods.Size = new System.Drawing.Size(733, 95);
101      this.lstMethods.Sorted = true;
102      this.lstMethods.TabIndex = 0;
103      this.lstMethods.SelectedIndexChanged += new System.EventHandler(this.lstMethods_SelectedIndexChanged);
104      //
105      // btnApply
106      //
107      this.btnApply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
108      this.btnApply.Enabled = false;
109      this.btnApply.Location = new System.Drawing.Point(603, 500);
110      this.btnApply.Name = "btnApply";
111      this.btnApply.Size = new System.Drawing.Size(129, 23);
112      this.btnApply.TabIndex = 2;
113      this.btnApply.Text = "Apply Manipulation";
114      this.btnApply.UseVisualStyleBackColor = true;
115      this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
116      //
117      // grpBoxData
118      //
119      this.grpBoxData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
120            | System.Windows.Forms.AnchorStyles.Right)));
121      this.grpBoxData.Controls.Add(this.tabsData);
122      this.grpBoxData.Location = new System.Drawing.Point(4, 105);
123      this.grpBoxData.Name = "grpBoxData";
124      this.grpBoxData.Size = new System.Drawing.Size(732, 189);
125      this.grpBoxData.TabIndex = 3;
126      this.grpBoxData.TabStop = false;
127      this.grpBoxData.Text = "Properties";
128      //
129      // tabsData
130      //
131      this.tabsData.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
132            | System.Windows.Forms.AnchorStyles.Right)));
133      this.tabsData.Controls.Add(this.tabPage1);
134      this.tabsData.Controls.Add(this.tabDataDeleteColumnsInformation);
135      this.tabsData.Controls.Add(this.tabDataDeleteColumnsVariance);
136      this.tabsData.Controls.Add(this.tabDataDeleteRowsInfo);
137      this.tabsData.Controls.Add(this.tabReplaceMissingValues);
138      this.tabsData.Controls.Add(this.tabDataShuffle);
139      this.tabsData.ItemSize = new System.Drawing.Size(58, 18);
140      this.tabsData.Location = new System.Drawing.Point(6, 19);
141      this.tabsData.Name = "tabsData";
142      this.tabsData.SelectedIndex = 0;
143      this.tabsData.Size = new System.Drawing.Size(719, 164);
144      this.tabsData.TabIndex = 3;
145      //
146      // tabPage1
147      //
148      this.tabPage1.Controls.Add(this.label7);
149      this.tabPage1.Location = new System.Drawing.Point(4, 22);
150      this.tabPage1.Name = "tabPage1";
151      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
152      this.tabPage1.Size = new System.Drawing.Size(711, 138);
153      this.tabPage1.TabIndex = 5;
154      this.tabPage1.Text = "tabDataInactive";
155      this.tabPage1.UseVisualStyleBackColor = true;
156      //
157      // label7
158      //
159      this.label7.AutoSize = true;
160      this.label7.Enabled = false;
161      this.label7.Location = new System.Drawing.Point(3, 3);
162      this.label7.Name = "label7";
163      this.label7.Size = new System.Drawing.Size(259, 13);
164      this.label7.TabIndex = 1;
165      this.label7.Text = "Please select one of the manipulation methods above";
166      //
167      // tabDataDeleteColumnsInformation
168      //
169      this.tabDataDeleteColumnsInformation.Controls.Add(this.label2);
170      this.tabDataDeleteColumnsInformation.Controls.Add(this.txtDeleteColumnsInfo);
171      this.tabDataDeleteColumnsInformation.Controls.Add(this.label1);
172      this.tabDataDeleteColumnsInformation.Location = new System.Drawing.Point(4, 22);
173      this.tabDataDeleteColumnsInformation.Name = "tabDataDeleteColumnsInformation";
174      this.tabDataDeleteColumnsInformation.Padding = new System.Windows.Forms.Padding(3);
175      this.tabDataDeleteColumnsInformation.Size = new System.Drawing.Size(711, 138);
176      this.tabDataDeleteColumnsInformation.TabIndex = 0;
177      this.tabDataDeleteColumnsInformation.Text = "del columns info";
178      this.tabDataDeleteColumnsInformation.UseVisualStyleBackColor = true;
179      //
180      // label2
181      //
182      this.label2.AutoSize = true;
183      this.label2.Location = new System.Drawing.Point(204, 3);
184      this.label2.Name = "label2";
185      this.label2.Size = new System.Drawing.Size(89, 13);
186      this.label2.TabIndex = 5;
187      this.label2.Text = "% missing values.";
188      //
189      // txtDeleteColumnsInfo
190      //
191      this.txtDeleteColumnsInfo.Location = new System.Drawing.Point(164, 0);
192      this.txtDeleteColumnsInfo.Name = "txtDeleteColumnsInfo";
193      this.txtDeleteColumnsInfo.Size = new System.Drawing.Size(34, 20);
194      this.txtDeleteColumnsInfo.TabIndex = 4;
195      this.txtDeleteColumnsInfo.TextChanged += new System.EventHandler(this.txtDeleteColumnsInfo_TextChanged);
196      //
197      // label1
198      //
199      this.label1.AutoSize = true;
200      this.label1.Location = new System.Drawing.Point(3, 3);
201      this.label1.Name = "label1";
202      this.label1.Size = new System.Drawing.Size(155, 13);
203      this.label1.TabIndex = 3;
204      this.label1.Text = "Delete columns with more than ";
205      //
206      // tabDataDeleteColumnsVariance
207      //
208      this.tabDataDeleteColumnsVariance.Controls.Add(this.txtDeleteColumnsVariance);
209      this.tabDataDeleteColumnsVariance.Controls.Add(this.label4);
210      this.tabDataDeleteColumnsVariance.Location = new System.Drawing.Point(4, 22);
211      this.tabDataDeleteColumnsVariance.Name = "tabDataDeleteColumnsVariance";
212      this.tabDataDeleteColumnsVariance.Padding = new System.Windows.Forms.Padding(3);
213      this.tabDataDeleteColumnsVariance.Size = new System.Drawing.Size(711, 138);
214      this.tabDataDeleteColumnsVariance.TabIndex = 1;
215      this.tabDataDeleteColumnsVariance.Text = "del columns variance";
216      this.tabDataDeleteColumnsVariance.UseVisualStyleBackColor = true;
217      //
218      // txtDeleteColumnsVariance
219      //
220      this.txtDeleteColumnsVariance.Location = new System.Drawing.Point(229, 0);
221      this.txtDeleteColumnsVariance.Name = "txtDeleteColumnsVariance";
222      this.txtDeleteColumnsVariance.Size = new System.Drawing.Size(135, 20);
223      this.txtDeleteColumnsVariance.TabIndex = 4;
224      this.txtDeleteColumnsVariance.TextChanged += new System.EventHandler(this.txtDeleteColumnsVariance_TextChanged);
225      //
226      // label4
227      //
228      this.label4.AutoSize = true;
229      this.label4.Location = new System.Drawing.Point(3, 3);
230      this.label4.Name = "label4";
231      this.label4.Size = new System.Drawing.Size(220, 13);
232      this.label4.TabIndex = 3;
233      this.label4.Text = "Delete columns with a variance smaller than  ";
234      //
235      // tabDataDeleteRowsInfo
236      //
237      this.tabDataDeleteRowsInfo.Controls.Add(this.label3);
238      this.tabDataDeleteRowsInfo.Controls.Add(this.txtDeleteRowsInfo);
239      this.tabDataDeleteRowsInfo.Controls.Add(this.label5);
240      this.tabDataDeleteRowsInfo.Location = new System.Drawing.Point(4, 22);
241      this.tabDataDeleteRowsInfo.Name = "tabDataDeleteRowsInfo";
242      this.tabDataDeleteRowsInfo.Padding = new System.Windows.Forms.Padding(3);
243      this.tabDataDeleteRowsInfo.Size = new System.Drawing.Size(711, 138);
244      this.tabDataDeleteRowsInfo.TabIndex = 2;
245      this.tabDataDeleteRowsInfo.Text = "del rows info";
246      this.tabDataDeleteRowsInfo.UseVisualStyleBackColor = true;
247      //
248      // label3
249      //
250      this.label3.AutoSize = true;
251      this.label3.Location = new System.Drawing.Point(189, 3);
252      this.label3.Name = "label3";
253      this.label3.Size = new System.Drawing.Size(89, 13);
254      this.label3.TabIndex = 8;
255      this.label3.Text = "% missing values.";
256      //
257      // txtDeleteRowsInfo
258      //
259      this.txtDeleteRowsInfo.Location = new System.Drawing.Point(147, 0);
260      this.txtDeleteRowsInfo.Name = "txtDeleteRowsInfo";
261      this.txtDeleteRowsInfo.Size = new System.Drawing.Size(34, 20);
262      this.txtDeleteRowsInfo.TabIndex = 7;
263      this.txtDeleteRowsInfo.TextChanged += new System.EventHandler(this.txtDeleteRowsInfo_TextChanged);
264      //
265      // label5
266      //
267      this.label5.AutoSize = true;
268      this.label5.Location = new System.Drawing.Point(3, 3);
269      this.label5.Name = "label5";
270      this.label5.Size = new System.Drawing.Size(138, 13);
271      this.label5.TabIndex = 6;
272      this.label5.Text = "Delete rows with more than ";
273      //
274      // tabReplaceMissingValues
275      //
276      this.tabReplaceMissingValues.Controls.Add(this.txtReplaceValue);
277      this.tabReplaceMissingValues.Controls.Add(this.cmbVariableNames);
278      this.tabReplaceMissingValues.Controls.Add(this.cmbReplaceWith);
279      this.tabReplaceMissingValues.Controls.Add(this.lblValueColon);
280      this.tabReplaceMissingValues.Controls.Add(this.label8);
281      this.tabReplaceMissingValues.Controls.Add(this.label10);
282      this.tabReplaceMissingValues.Location = new System.Drawing.Point(4, 22);
283      this.tabReplaceMissingValues.Name = "tabReplaceMissingValues";
284      this.tabReplaceMissingValues.Padding = new System.Windows.Forms.Padding(3);
285      this.tabReplaceMissingValues.Size = new System.Drawing.Size(711, 138);
286      this.tabReplaceMissingValues.TabIndex = 6;
287      this.tabReplaceMissingValues.Text = "repl missing vals";
288      this.tabReplaceMissingValues.UseVisualStyleBackColor = true;
289      //
290      // txtReplaceValue
291      //
292      this.txtReplaceValue.Location = new System.Drawing.Point(173, 27);
293      this.txtReplaceValue.Name = "txtReplaceValue";
294      this.txtReplaceValue.Size = new System.Drawing.Size(100, 20);
295      this.txtReplaceValue.TabIndex = 2;
296      this.txtReplaceValue.TextChanged += new System.EventHandler(this.txtReplaceValue_TextChanged);
297      //
298      // cmbVariableNames
299      //
300      this.cmbVariableNames.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
301      this.cmbVariableNames.FormattingEnabled = true;
302      this.cmbVariableNames.Location = new System.Drawing.Point(142, 0);
303      this.cmbVariableNames.Name = "cmbVariableNames";
304      this.cmbVariableNames.Size = new System.Drawing.Size(121, 21);
305      this.cmbVariableNames.TabIndex = 1;
306      this.cmbVariableNames.SelectedIndexChanged += new System.EventHandler(this.cmbReplaceWith_SelectedIndexChanged);
307      //
308      // cmbReplaceWith
309      //
310      this.cmbReplaceWith.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
311      this.cmbReplaceWith.FormattingEnabled = true;
312      this.cmbReplaceWith.Items.AddRange(new object[] {
313            "Value",
314            "Average",
315            "Median",
316            "Most Common",
317            "Random"});
318      this.cmbReplaceWith.Location = new System.Drawing.Point(35, 27);
319      this.cmbReplaceWith.Name = "cmbReplaceWith";
320      this.cmbReplaceWith.Size = new System.Drawing.Size(121, 21);
321      this.cmbReplaceWith.TabIndex = 1;
322      this.cmbReplaceWith.SelectedIndexChanged += new System.EventHandler(this.cmbReplaceWith_SelectedIndexChanged);
323      //
324      // lblValueColon
325      //
326      this.lblValueColon.AutoSize = true;
327      this.lblValueColon.Location = new System.Drawing.Point(157, 30);
328      this.lblValueColon.Name = "lblValueColon";
329      this.lblValueColon.Size = new System.Drawing.Size(10, 13);
330      this.lblValueColon.TabIndex = 0;
331      this.lblValueColon.Text = ":";
332      //
333      // label8
334      //
335      this.label8.AutoSize = true;
336      this.label8.Location = new System.Drawing.Point(3, 30);
337      this.label8.Name = "label8";
338      this.label8.Size = new System.Drawing.Size(26, 13);
339      this.label8.TabIndex = 0;
340      this.label8.Text = "with";
341      //
342      // label10
343      //
344      this.label10.AutoSize = true;
345      this.label10.Location = new System.Drawing.Point(3, 3);
346      this.label10.Name = "label10";
347      this.label10.Size = new System.Drawing.Size(133, 13);
348      this.label10.TabIndex = 0;
349      this.label10.Text = "Replace missing values for";
350      //
351      // tabDataShuffle
352      //
353      this.tabDataShuffle.Controls.Add(this.shuffleSeparatelyCheckbox);
354      this.tabDataShuffle.Controls.Add(this.lblShuffleProperties);
355      this.tabDataShuffle.Location = new System.Drawing.Point(4, 22);
356      this.tabDataShuffle.Name = "tabDataShuffle";
357      this.tabDataShuffle.Padding = new System.Windows.Forms.Padding(3);
358      this.tabDataShuffle.Size = new System.Drawing.Size(711, 138);
359      this.tabDataShuffle.TabIndex = 4;
360      this.tabDataShuffle.Text = "shuffle";
361      this.tabDataShuffle.UseVisualStyleBackColor = true;
362      //
363      // lblShuffleProperties
364      //
365      this.lblShuffleProperties.AutoSize = true;
366      this.lblShuffleProperties.Enabled = false;
367      this.lblShuffleProperties.Location = new System.Drawing.Point(3, 3);
368      this.lblShuffleProperties.Name = "lblShuffleProperties";
369      this.lblShuffleProperties.Size = new System.Drawing.Size(115, 13);
370      this.lblShuffleProperties.TabIndex = 0;
371      this.lblShuffleProperties.Text = "No properties available";
372      //
373      // grpBoxPreview
374      //
375      this.grpBoxPreview.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
376            | System.Windows.Forms.AnchorStyles.Left)
377            | System.Windows.Forms.AnchorStyles.Right)));
378      this.grpBoxPreview.Controls.Add(this.tabsPreview);
379      this.grpBoxPreview.Location = new System.Drawing.Point(4, 301);
380      this.grpBoxPreview.Name = "grpBoxPreview";
381      this.grpBoxPreview.Size = new System.Drawing.Size(732, 193);
382      this.grpBoxPreview.TabIndex = 4;
383      this.grpBoxPreview.TabStop = false;
384      this.grpBoxPreview.Text = "Preview";
385      //
386      // tabsPreview
387      //
388      this.tabsPreview.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
389            | System.Windows.Forms.AnchorStyles.Right)));
390      this.tabsPreview.Controls.Add(this.tabPreviewInactive);
391      this.tabsPreview.Controls.Add(this.tabPreviewDeleteColumnsInfo);
392      this.tabsPreview.Controls.Add(this.tabPreviewDeleteColumnsVariance);
393      this.tabsPreview.Controls.Add(this.tabPreviewDeleteRowsInfo);
394      this.tabsPreview.Controls.Add(this.tabPreviewReplaceMissingValues);
395      this.tabsPreview.Controls.Add(this.tabPreviewShuffle);
396      this.tabsPreview.ItemSize = new System.Drawing.Size(58, 18);
397      this.tabsPreview.Location = new System.Drawing.Point(6, 19);
398      this.tabsPreview.Name = "tabsPreview";
399      this.tabsPreview.SelectedIndex = 0;
400      this.tabsPreview.Size = new System.Drawing.Size(719, 168);
401      this.tabsPreview.TabIndex = 3;
402      //
403      // tabPreviewInactive
404      //
405      this.tabPreviewInactive.Controls.Add(this.lblPreviewInActive);
406      this.tabPreviewInactive.Location = new System.Drawing.Point(4, 22);
407      this.tabPreviewInactive.Name = "tabPreviewInactive";
408      this.tabPreviewInactive.Padding = new System.Windows.Forms.Padding(3);
409      this.tabPreviewInactive.Size = new System.Drawing.Size(711, 142);
410      this.tabPreviewInactive.TabIndex = 5;
411      this.tabPreviewInactive.Text = "inactive";
412      this.tabPreviewInactive.UseVisualStyleBackColor = true;
413      //
414      // lblPreviewInActive
415      //
416      this.lblPreviewInActive.AutoSize = true;
417      this.lblPreviewInActive.Location = new System.Drawing.Point(3, 3);
418      this.lblPreviewInActive.Name = "lblPreviewInActive";
419      this.lblPreviewInActive.Size = new System.Drawing.Size(361, 39);
420      this.lblPreviewInActive.TabIndex = 2;
421      this.lblPreviewInActive.Text = "Filters are active and thus manipulations cannot be applied!\r\n\r\nPlease deactive t" +
422    "he filter(s) first in order to be able to perform manipulations.";
423      this.lblPreviewInActive.Visible = false;
424      //
425      // tabPreviewDeleteColumnsInfo
426      //
427      this.tabPreviewDeleteColumnsInfo.Controls.Add(this.lblPreviewColumnsInfo);
428      this.tabPreviewDeleteColumnsInfo.Location = new System.Drawing.Point(4, 22);
429      this.tabPreviewDeleteColumnsInfo.Name = "tabPreviewDeleteColumnsInfo";
430      this.tabPreviewDeleteColumnsInfo.Padding = new System.Windows.Forms.Padding(3);
431      this.tabPreviewDeleteColumnsInfo.Size = new System.Drawing.Size(711, 142);
432      this.tabPreviewDeleteColumnsInfo.TabIndex = 0;
433      this.tabPreviewDeleteColumnsInfo.Text = "del columns info";
434      this.tabPreviewDeleteColumnsInfo.UseVisualStyleBackColor = true;
435      //
436      // lblPreviewColumnsInfo
437      //
438      this.lblPreviewColumnsInfo.AutoSize = true;
439      this.lblPreviewColumnsInfo.Location = new System.Drawing.Point(3, 3);
440      this.lblPreviewColumnsInfo.Name = "lblPreviewColumnsInfo";
441      this.lblPreviewColumnsInfo.Size = new System.Drawing.Size(318, 13);
442      this.lblPreviewColumnsInfo.TabIndex = 1;
443      this.lblPreviewColumnsInfo.Text = "{0} columns with more than {1} % missing values would be deleted";
444      //
445      // tabPreviewDeleteColumnsVariance
446      //
447      this.tabPreviewDeleteColumnsVariance.Controls.Add(this.label12);
448      this.tabPreviewDeleteColumnsVariance.Controls.Add(this.lblPreviewColumnsVariance);
449      this.tabPreviewDeleteColumnsVariance.Location = new System.Drawing.Point(4, 22);
450      this.tabPreviewDeleteColumnsVariance.Name = "tabPreviewDeleteColumnsVariance";
451      this.tabPreviewDeleteColumnsVariance.Padding = new System.Windows.Forms.Padding(3);
452      this.tabPreviewDeleteColumnsVariance.Size = new System.Drawing.Size(711, 142);
453      this.tabPreviewDeleteColumnsVariance.TabIndex = 1;
454      this.tabPreviewDeleteColumnsVariance.Text = "del columns variance";
455      this.tabPreviewDeleteColumnsVariance.UseVisualStyleBackColor = true;
456      //
457      // label12
458      //
459      this.label12.AutoSize = true;
460      this.label12.Location = new System.Drawing.Point(6, 22);
461      this.label12.Name = "label12";
462      this.label12.Size = new System.Drawing.Size(0, 13);
463      this.label12.TabIndex = 2;
464      //
465      // lblPreviewColumnsVariance
466      //
467      this.lblPreviewColumnsVariance.AutoSize = true;
468      this.lblPreviewColumnsVariance.Location = new System.Drawing.Point(3, 3);
469      this.lblPreviewColumnsVariance.Name = "lblPreviewColumnsVariance";
470      this.lblPreviewColumnsVariance.Size = new System.Drawing.Size(301, 13);
471      this.lblPreviewColumnsVariance.TabIndex = 2;
472      this.lblPreviewColumnsVariance.Text = "{0} columns with a variance smaller than {1} would be deleted.";
473      //
474      // tabPreviewDeleteRowsInfo
475      //
476      this.tabPreviewDeleteRowsInfo.Controls.Add(this.lblPreviewRowsInfo);
477      this.tabPreviewDeleteRowsInfo.Location = new System.Drawing.Point(4, 22);
478      this.tabPreviewDeleteRowsInfo.Name = "tabPreviewDeleteRowsInfo";
479      this.tabPreviewDeleteRowsInfo.Padding = new System.Windows.Forms.Padding(3);
480      this.tabPreviewDeleteRowsInfo.Size = new System.Drawing.Size(711, 142);
481      this.tabPreviewDeleteRowsInfo.TabIndex = 2;
482      this.tabPreviewDeleteRowsInfo.Text = "del rows info";
483      this.tabPreviewDeleteRowsInfo.UseVisualStyleBackColor = true;
484      //
485      // lblPreviewRowsInfo
486      //
487      this.lblPreviewRowsInfo.AutoSize = true;
488      this.lblPreviewRowsInfo.Location = new System.Drawing.Point(3, 3);
489      this.lblPreviewRowsInfo.Name = "lblPreviewRowsInfo";
490      this.lblPreviewRowsInfo.Size = new System.Drawing.Size(301, 13);
491      this.lblPreviewRowsInfo.TabIndex = 2;
492      this.lblPreviewRowsInfo.Text = "{0} rows with more than {1} % missing values would be deleted";
493      //
494      // tabPreviewReplaceMissingValues
495      //
496      this.tabPreviewReplaceMissingValues.Controls.Add(this.lblPreviewReplaceMissingValues);
497      this.tabPreviewReplaceMissingValues.Location = new System.Drawing.Point(4, 22);
498      this.tabPreviewReplaceMissingValues.Name = "tabPreviewReplaceMissingValues";
499      this.tabPreviewReplaceMissingValues.Padding = new System.Windows.Forms.Padding(3);
500      this.tabPreviewReplaceMissingValues.Size = new System.Drawing.Size(711, 142);
501      this.tabPreviewReplaceMissingValues.TabIndex = 6;
502      this.tabPreviewReplaceMissingValues.Text = "repl missing vals";
503      this.tabPreviewReplaceMissingValues.UseVisualStyleBackColor = true;
504      //
505      // lblPreviewReplaceMissingValues
506      //
507      this.lblPreviewReplaceMissingValues.AutoSize = true;
508      this.lblPreviewReplaceMissingValues.Location = new System.Drawing.Point(3, 3);
509      this.lblPreviewReplaceMissingValues.Name = "lblPreviewReplaceMissingValues";
510      this.lblPreviewReplaceMissingValues.Size = new System.Drawing.Size(343, 13);
511      this.lblPreviewReplaceMissingValues.TabIndex = 3;
512      this.lblPreviewReplaceMissingValues.Text = "{0} cells detected with missing values which would be replaced with {1}";
513      //
514      // tabPreviewShuffle
515      //
516      this.tabPreviewShuffle.Controls.Add(this.lblPreviewShuffle);
517      this.tabPreviewShuffle.Location = new System.Drawing.Point(4, 22);
518      this.tabPreviewShuffle.Name = "tabPreviewShuffle";
519      this.tabPreviewShuffle.Padding = new System.Windows.Forms.Padding(3);
520      this.tabPreviewShuffle.Size = new System.Drawing.Size(711, 142);
521      this.tabPreviewShuffle.TabIndex = 4;
522      this.tabPreviewShuffle.Text = "shuffle";
523      this.tabPreviewShuffle.UseVisualStyleBackColor = true;
524      //
525      // lblPreviewShuffle
526      //
527      this.lblPreviewShuffle.AutoSize = true;
528      this.lblPreviewShuffle.Location = new System.Drawing.Point(3, 3);
529      this.lblPreviewShuffle.Name = "lblPreviewShuffle";
530      this.lblPreviewShuffle.Size = new System.Drawing.Size(252, 13);
531      this.lblPreviewShuffle.TabIndex = 0;
532      this.lblPreviewShuffle.Text = "Data will be shuffled randomly - preview not possible";
533      //
534      // label9
535      //
536      this.label9.Location = new System.Drawing.Point(0, 0);
537      this.label9.Name = "label9";
538      this.label9.Size = new System.Drawing.Size(100, 23);
539      this.label9.TabIndex = 0;
540      //
541      // shuffleSeparatelyCheckbox
542      //
543      this.shuffleSeparatelyCheckbox.AutoSize = true;
544      this.shuffleSeparatelyCheckbox.Location = new System.Drawing.Point(6, 2);
545      this.shuffleSeparatelyCheckbox.Name = "shuffleSeparatelyCheckbox";
546      this.shuffleSeparatelyCheckbox.Size = new System.Drawing.Size(233, 17);
547      this.shuffleSeparatelyCheckbox.TabIndex = 1;
548      this.shuffleSeparatelyCheckbox.Text = "Shuffle training and test partitions separately";
549      this.shuffleSeparatelyCheckbox.UseVisualStyleBackColor = true;
550      //
551      // ManipulationView
552      //
553      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
554      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
555      this.Controls.Add(this.btnApply);
556      this.Controls.Add(this.grpBoxPreview);
557      this.Controls.Add(this.grpBoxData);
558      this.Controls.Add(this.lstMethods);
559      this.Name = "ManipulationView";
560      this.Size = new System.Drawing.Size(739, 529);
561      this.grpBoxData.ResumeLayout(false);
562      this.tabsData.ResumeLayout(false);
563      this.tabPage1.ResumeLayout(false);
564      this.tabPage1.PerformLayout();
565      this.tabDataDeleteColumnsInformation.ResumeLayout(false);
566      this.tabDataDeleteColumnsInformation.PerformLayout();
567      this.tabDataDeleteColumnsVariance.ResumeLayout(false);
568      this.tabDataDeleteColumnsVariance.PerformLayout();
569      this.tabDataDeleteRowsInfo.ResumeLayout(false);
570      this.tabDataDeleteRowsInfo.PerformLayout();
571      this.tabReplaceMissingValues.ResumeLayout(false);
572      this.tabReplaceMissingValues.PerformLayout();
573      this.tabDataShuffle.ResumeLayout(false);
574      this.tabDataShuffle.PerformLayout();
575      this.grpBoxPreview.ResumeLayout(false);
576      this.tabsPreview.ResumeLayout(false);
577      this.tabPreviewInactive.ResumeLayout(false);
578      this.tabPreviewInactive.PerformLayout();
579      this.tabPreviewDeleteColumnsInfo.ResumeLayout(false);
580      this.tabPreviewDeleteColumnsInfo.PerformLayout();
581      this.tabPreviewDeleteColumnsVariance.ResumeLayout(false);
582      this.tabPreviewDeleteColumnsVariance.PerformLayout();
583      this.tabPreviewDeleteRowsInfo.ResumeLayout(false);
584      this.tabPreviewDeleteRowsInfo.PerformLayout();
585      this.tabPreviewReplaceMissingValues.ResumeLayout(false);
586      this.tabPreviewReplaceMissingValues.PerformLayout();
587      this.tabPreviewShuffle.ResumeLayout(false);
588      this.tabPreviewShuffle.PerformLayout();
589      this.ResumeLayout(false);
590
591    }
592
593    #endregion
594
595    private System.Windows.Forms.ListBox lstMethods;
596    private System.Windows.Forms.Button btnApply;
597    private System.Windows.Forms.GroupBox grpBoxData;
598    private System.Windows.Forms.GroupBox grpBoxPreview;
599    private System.Windows.Forms.TabControl tabsPreview;
600    private System.Windows.Forms.TabPage tabPreviewDeleteColumnsInfo;
601    private System.Windows.Forms.TabPage tabPreviewDeleteColumnsVariance;
602    private System.Windows.Forms.TabPage tabPreviewDeleteRowsInfo;
603    private System.Windows.Forms.TabPage tabPreviewShuffle;
604    private System.Windows.Forms.Label lblPreviewShuffle;
605    private System.Windows.Forms.TabPage tabPreviewInactive;
606    private System.Windows.Forms.Label lblPreviewColumnsInfo;
607    private System.Windows.Forms.Label label12;
608    private System.Windows.Forms.Label lblPreviewColumnsVariance;
609    private System.Windows.Forms.Label lblPreviewRowsInfo;
610    private System.Windows.Forms.TabPage tabPreviewReplaceMissingValues;
611    private System.Windows.Forms.Label lblPreviewReplaceMissingValues;
612    private System.Windows.Forms.Label label9;
613    private System.Windows.Forms.TabControl tabsData;
614    private System.Windows.Forms.TabPage tabPage1;
615    private System.Windows.Forms.Label label7;
616    private System.Windows.Forms.TabPage tabDataDeleteColumnsInformation;
617    private System.Windows.Forms.Label label2;
618    private System.Windows.Forms.TextBox txtDeleteColumnsInfo;
619    private System.Windows.Forms.Label label1;
620    private System.Windows.Forms.TabPage tabDataDeleteColumnsVariance;
621    private System.Windows.Forms.TextBox txtDeleteColumnsVariance;
622    private System.Windows.Forms.Label label4;
623    private System.Windows.Forms.TabPage tabDataDeleteRowsInfo;
624    private System.Windows.Forms.Label label3;
625    private System.Windows.Forms.TextBox txtDeleteRowsInfo;
626    private System.Windows.Forms.Label label5;
627    private System.Windows.Forms.TabPage tabReplaceMissingValues;
628    private System.Windows.Forms.TextBox txtReplaceValue;
629    private System.Windows.Forms.ComboBox cmbReplaceWith;
630    private System.Windows.Forms.Label lblValueColon;
631    private System.Windows.Forms.Label label10;
632    private System.Windows.Forms.TabPage tabDataShuffle;
633    private System.Windows.Forms.Label lblShuffleProperties;
634    private System.Windows.Forms.ComboBox cmbVariableNames;
635    private System.Windows.Forms.Label label8;
636    private System.Windows.Forms.Label lblPreviewInActive;
637    private System.Windows.Forms.CheckBox shuffleSeparatelyCheckbox;
638  }
639}
Note: See TracBrowser for help on using the repository browser.