Free cookie consent management tool by TermsFeed Policy Generator

source: branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestsView.designer.cs @ 11695

Last change on this file since 11695 was 11695, checked in by ascheibe, 9 years ago

#2031 added more information to the UI about the results of the statistical tests

File size: 30.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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
22namespace HeuristicLab.Analysis.Statistics {
23  partial class StatisticalTestsView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      this.stringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
49      this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
50      this.openBoxPlotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
51      this.groupByLabel = new System.Windows.Forms.Label();
52      this.label1 = new System.Windows.Forms.Label();
53      this.resultComboBox = new System.Windows.Forms.ComboBox();
54      this.lblPVal = new System.Windows.Forms.Label();
55      this.pValTextBox = new System.Windows.Forms.TextBox();
56      this.groupComboBox = new System.Windows.Forms.ComboBox();
57      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
58      this.splitContainer3 = new System.Windows.Forms.SplitContainer();
59      this.pairwiseTestGroupBox = new System.Windows.Forms.GroupBox();
60      this.pairwiseStringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
61      this.pairwiseLabel = new System.Windows.Forms.Label();
62      this.label3 = new System.Windows.Forms.Label();
63      this.equalDistsTextBox = new System.Windows.Forms.TextBox();
64      this.label2 = new System.Windows.Forms.Label();
65      this.groupCompComboBox = new System.Windows.Forms.ComboBox();
66      this.allGroupTestGroupBox = new System.Windows.Forms.GroupBox();
67      this.groupCompLabel = new System.Windows.Forms.Label();
68      this.normalityGroupBox = new System.Windows.Forms.GroupBox();
69      this.normalityTextLabel = new System.Windows.Forms.Label();
70      this.normalityStringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
71      this.normalityLabel = new System.Windows.Forms.Label();
72      this.selectDataGroupBox = new System.Windows.Forms.GroupBox();
73      this.tabControl = new System.Windows.Forms.TabControl();
74      this.tabPage1 = new System.Windows.Forms.TabPage();
75      this.tabPage2 = new System.Windows.Forms.TabPage();
76      this.histogramControl = new HeuristicLab.Analysis.Views.HistogramControl();
77      this.groupComTextLabel = new System.Windows.Forms.Label();
78      this.pairwiseTextLabel = new System.Windows.Forms.Label();
79      this.contextMenuStrip1.SuspendLayout();
80      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
81      this.splitContainer1.Panel1.SuspendLayout();
82      this.splitContainer1.Panel2.SuspendLayout();
83      this.splitContainer1.SuspendLayout();
84      ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
85      this.splitContainer3.Panel1.SuspendLayout();
86      this.splitContainer3.Panel2.SuspendLayout();
87      this.splitContainer3.SuspendLayout();
88      this.pairwiseTestGroupBox.SuspendLayout();
89      this.allGroupTestGroupBox.SuspendLayout();
90      this.normalityGroupBox.SuspendLayout();
91      this.selectDataGroupBox.SuspendLayout();
92      this.tabControl.SuspendLayout();
93      this.tabPage1.SuspendLayout();
94      this.tabPage2.SuspendLayout();
95      this.SuspendLayout();
96      //
97      // stringConvertibleMatrixView
98      //
99      this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
100            | System.Windows.Forms.AnchorStyles.Left)
101            | System.Windows.Forms.AnchorStyles.Right)));
102      this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View";
103      this.stringConvertibleMatrixView.Content = null;
104      this.stringConvertibleMatrixView.ContextMenuStrip = this.contextMenuStrip1;
105      this.stringConvertibleMatrixView.Location = new System.Drawing.Point(3, 3);
106      this.stringConvertibleMatrixView.Name = "stringConvertibleMatrixView";
107      this.stringConvertibleMatrixView.ReadOnly = false;
108      this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false;
109      this.stringConvertibleMatrixView.ShowStatisticalInformation = true;
110      this.stringConvertibleMatrixView.Size = new System.Drawing.Size(567, 597);
111      this.stringConvertibleMatrixView.TabIndex = 0;
112      //
113      // contextMenuStrip1
114      //
115      this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
116            this.openBoxPlotToolStripMenuItem});
117      this.contextMenuStrip1.Name = "contextMenuStrip1";
118      this.contextMenuStrip1.Size = new System.Drawing.Size(175, 26);
119      //
120      // openBoxPlotToolStripMenuItem
121      //
122      this.openBoxPlotToolStripMenuItem.Name = "openBoxPlotToolStripMenuItem";
123      this.openBoxPlotToolStripMenuItem.Size = new System.Drawing.Size(174, 22);
124      this.openBoxPlotToolStripMenuItem.Text = "Open BoxPlot View";
125      this.openBoxPlotToolStripMenuItem.Click += new System.EventHandler(this.openBoxPlotToolStripMenuItem_Click);
126      //
127      // groupByLabel
128      //
129      this.groupByLabel.AutoSize = true;
130      this.groupByLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
131      this.groupByLabel.Location = new System.Drawing.Point(3, 6);
132      this.groupByLabel.Name = "groupByLabel";
133      this.groupByLabel.Size = new System.Drawing.Size(53, 13);
134      this.groupByLabel.TabIndex = 7;
135      this.groupByLabel.Text = "Group by:";
136      //
137      // label1
138      //
139      this.label1.AutoSize = true;
140      this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
141      this.label1.Location = new System.Drawing.Point(3, 6);
142      this.label1.Name = "label1";
143      this.label1.Size = new System.Drawing.Size(40, 13);
144      this.label1.TabIndex = 6;
145      this.label1.Text = "Result:";
146      //
147      // resultComboBox
148      //
149      this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
150            | System.Windows.Forms.AnchorStyles.Right)));
151      this.resultComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
152      this.resultComboBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
153      this.resultComboBox.FormattingEnabled = true;
154      this.resultComboBox.Location = new System.Drawing.Point(62, 3);
155      this.resultComboBox.Name = "resultComboBox";
156      this.resultComboBox.Size = new System.Drawing.Size(250, 21);
157      this.resultComboBox.TabIndex = 5;
158      this.resultComboBox.SelectedValueChanged += new System.EventHandler(this.resultComboBox_SelectedValueChanged);
159      //
160      // lblPVal
161      //
162      this.lblPVal.AutoSize = true;
163      this.lblPVal.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
164      this.lblPVal.Location = new System.Drawing.Point(6, 39);
165      this.lblPVal.Name = "lblPVal";
166      this.lblPVal.Size = new System.Drawing.Size(46, 13);
167      this.lblPVal.TabIndex = 12;
168      this.lblPVal.Text = "p-Value:";
169      this.lblPVal.TextAlign = System.Drawing.ContentAlignment.TopRight;
170      //
171      // pValTextBox
172      //
173      this.pValTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
174            | System.Windows.Forms.AnchorStyles.Right)));
175      this.pValTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
176      this.pValTextBox.Location = new System.Drawing.Point(58, 36);
177      this.pValTextBox.Name = "pValTextBox";
178      this.pValTextBox.ReadOnly = true;
179      this.pValTextBox.Size = new System.Drawing.Size(263, 20);
180      this.pValTextBox.TabIndex = 13;
181      //
182      // groupComboBox
183      //
184      this.groupComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
185            | System.Windows.Forms.AnchorStyles.Right)));
186      this.groupComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
187      this.groupComboBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
188      this.groupComboBox.FormattingEnabled = true;
189      this.groupComboBox.Location = new System.Drawing.Point(62, 3);
190      this.groupComboBox.Name = "groupComboBox";
191      this.groupComboBox.Size = new System.Drawing.Size(250, 21);
192      this.groupComboBox.TabIndex = 14;
193      this.groupComboBox.SelectedValueChanged += new System.EventHandler(this.groupComboBox_SelectedValueChanged);
194      //
195      // splitContainer1
196      //
197      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
198            | System.Windows.Forms.AnchorStyles.Left)
199            | System.Windows.Forms.AnchorStyles.Right)));
200      this.splitContainer1.Location = new System.Drawing.Point(6, 19);
201      this.splitContainer1.Name = "splitContainer1";
202      this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
203      //
204      // splitContainer1.Panel1
205      //
206      this.splitContainer1.Panel1.Controls.Add(this.resultComboBox);
207      this.splitContainer1.Panel1.Controls.Add(this.label1);
208      //
209      // splitContainer1.Panel2
210      //
211      this.splitContainer1.Panel2.Controls.Add(this.groupByLabel);
212      this.splitContainer1.Panel2.Controls.Add(this.groupComboBox);
213      this.splitContainer1.Size = new System.Drawing.Size(315, 54);
214      this.splitContainer1.SplitterDistance = 25;
215      this.splitContainer1.TabIndex = 18;
216      //
217      // splitContainer3
218      //
219      this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
220            | System.Windows.Forms.AnchorStyles.Left)
221            | System.Windows.Forms.AnchorStyles.Right)));
222      this.splitContainer3.Location = new System.Drawing.Point(6, 6);
223      this.splitContainer3.Name = "splitContainer3";
224      //
225      // splitContainer3.Panel1
226      //
227      this.splitContainer3.Panel1.Controls.Add(this.stringConvertibleMatrixView);
228      //
229      // splitContainer3.Panel2
230      //
231      this.splitContainer3.Panel2.Controls.Add(this.pairwiseTestGroupBox);
232      this.splitContainer3.Panel2.Controls.Add(this.allGroupTestGroupBox);
233      this.splitContainer3.Panel2.Controls.Add(this.normalityGroupBox);
234      this.splitContainer3.Panel2.Controls.Add(this.selectDataGroupBox);
235      this.splitContainer3.Size = new System.Drawing.Size(910, 603);
236      this.splitContainer3.SplitterDistance = 573;
237      this.splitContainer3.TabIndex = 20;
238      //
239      // pairwiseTestGroupBox
240      //
241      this.pairwiseTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
242            | System.Windows.Forms.AnchorStyles.Left)
243            | System.Windows.Forms.AnchorStyles.Right)));
244      this.pairwiseTestGroupBox.Controls.Add(this.pairwiseTextLabel);
245      this.pairwiseTestGroupBox.Controls.Add(this.pairwiseStringConvertibleMatrixView);
246      this.pairwiseTestGroupBox.Controls.Add(this.pairwiseLabel);
247      this.pairwiseTestGroupBox.Controls.Add(this.label3);
248      this.pairwiseTestGroupBox.Controls.Add(this.equalDistsTextBox);
249      this.pairwiseTestGroupBox.Controls.Add(this.label2);
250      this.pairwiseTestGroupBox.Controls.Add(this.groupCompComboBox);
251      this.pairwiseTestGroupBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
252      this.pairwiseTestGroupBox.Location = new System.Drawing.Point(3, 306);
253      this.pairwiseTestGroupBox.Name = "pairwiseTestGroupBox";
254      this.pairwiseTestGroupBox.Size = new System.Drawing.Size(327, 275);
255      this.pairwiseTestGroupBox.TabIndex = 22;
256      this.pairwiseTestGroupBox.TabStop = false;
257      this.pairwiseTestGroupBox.Text = "4. Pairwise Test for Inequalities in Distributions";
258      //
259      // pairwiseStringConvertibleMatrixView
260      //
261      this.pairwiseStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
262            | System.Windows.Forms.AnchorStyles.Left)
263            | System.Windows.Forms.AnchorStyles.Right)));
264      this.pairwiseStringConvertibleMatrixView.Caption = "StringConvertibleMatrix View";
265      this.pairwiseStringConvertibleMatrixView.Content = null;
266      this.pairwiseStringConvertibleMatrixView.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
267      this.pairwiseStringConvertibleMatrixView.Location = new System.Drawing.Point(6, 97);
268      this.pairwiseStringConvertibleMatrixView.Name = "pairwiseStringConvertibleMatrixView";
269      this.pairwiseStringConvertibleMatrixView.ReadOnly = false;
270      this.pairwiseStringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false;
271      this.pairwiseStringConvertibleMatrixView.ShowStatisticalInformation = false;
272      this.pairwiseStringConvertibleMatrixView.Size = new System.Drawing.Size(315, 172);
273      this.pairwiseStringConvertibleMatrixView.TabIndex = 19;
274      //
275      // pairwiseLabel
276      //
277      this.pairwiseLabel.AutoSize = true;
278      this.pairwiseLabel.Location = new System.Drawing.Point(6, 44);
279      this.pairwiseLabel.MaximumSize = new System.Drawing.Size(16, 16);
280      this.pairwiseLabel.MinimumSize = new System.Drawing.Size(16, 16);
281      this.pairwiseLabel.Name = "pairwiseLabel";
282      this.pairwiseLabel.Size = new System.Drawing.Size(16, 16);
283      this.pairwiseLabel.TabIndex = 18;
284      //
285      // label3
286      //
287      this.label3.AutoSize = true;
288      this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
289      this.label3.Location = new System.Drawing.Point(6, 68);
290      this.label3.Name = "label3";
291      this.label3.Size = new System.Drawing.Size(74, 13);
292      this.label3.TabIndex = 18;
293      this.label3.Text = "Equal Groups:";
294      this.label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
295      //
296      // equalDistsTextBox
297      //
298      this.equalDistsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
299            | System.Windows.Forms.AnchorStyles.Right)));
300      this.equalDistsTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
301      this.equalDistsTextBox.Location = new System.Drawing.Point(86, 65);
302      this.equalDistsTextBox.Name = "equalDistsTextBox";
303      this.equalDistsTextBox.ReadOnly = true;
304      this.equalDistsTextBox.Size = new System.Drawing.Size(235, 20);
305      this.equalDistsTextBox.TabIndex = 18;
306      //
307      // label2
308      //
309      this.label2.AutoSize = true;
310      this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
311      this.label2.Location = new System.Drawing.Point(6, 22);
312      this.label2.Name = "label2";
313      this.label2.Size = new System.Drawing.Size(111, 13);
314      this.label2.TabIndex = 18;
315      this.label2.Text = "Group for comparison:";
316      //
317      // groupCompComboBox
318      //
319      this.groupCompComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
320            | System.Windows.Forms.AnchorStyles.Right)));
321      this.groupCompComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
322      this.groupCompComboBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
323      this.groupCompComboBox.FormattingEnabled = true;
324      this.groupCompComboBox.Location = new System.Drawing.Point(123, 19);
325      this.groupCompComboBox.Name = "groupCompComboBox";
326      this.groupCompComboBox.Size = new System.Drawing.Size(198, 21);
327      this.groupCompComboBox.TabIndex = 17;
328      this.groupCompComboBox.SelectedValueChanged += new System.EventHandler(this.groupCompComboBox_SelectedValueChanged);
329      //
330      // allGroupTestGroupBox
331      //
332      this.allGroupTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
333            | System.Windows.Forms.AnchorStyles.Right)));
334      this.allGroupTestGroupBox.Controls.Add(this.groupComTextLabel);
335      this.allGroupTestGroupBox.Controls.Add(this.groupCompLabel);
336      this.allGroupTestGroupBox.Controls.Add(this.lblPVal);
337      this.allGroupTestGroupBox.Controls.Add(this.pValTextBox);
338      this.allGroupTestGroupBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
339      this.allGroupTestGroupBox.Location = new System.Drawing.Point(3, 237);
340      this.allGroupTestGroupBox.Name = "allGroupTestGroupBox";
341      this.allGroupTestGroupBox.Size = new System.Drawing.Size(327, 63);
342      this.allGroupTestGroupBox.TabIndex = 21;
343      this.allGroupTestGroupBox.TabStop = false;
344      this.allGroupTestGroupBox.Text = "3. Kruskal Wallis Test for Inequalities in Distributions";
345      //
346      // groupCompLabel
347      //
348      this.groupCompLabel.AutoSize = true;
349      this.groupCompLabel.Location = new System.Drawing.Point(6, 16);
350      this.groupCompLabel.MaximumSize = new System.Drawing.Size(16, 16);
351      this.groupCompLabel.MinimumSize = new System.Drawing.Size(16, 16);
352      this.groupCompLabel.Name = "groupCompLabel";
353      this.groupCompLabel.Size = new System.Drawing.Size(16, 16);
354      this.groupCompLabel.TabIndex = 17;
355      //
356      // normalityGroupBox
357      //
358      this.normalityGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
359            | System.Windows.Forms.AnchorStyles.Right)));
360      this.normalityGroupBox.Controls.Add(this.normalityTextLabel);
361      this.normalityGroupBox.Controls.Add(this.normalityStringConvertibleMatrixView);
362      this.normalityGroupBox.Controls.Add(this.normalityLabel);
363      this.normalityGroupBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
364      this.normalityGroupBox.Location = new System.Drawing.Point(3, 88);
365      this.normalityGroupBox.Name = "normalityGroupBox";
366      this.normalityGroupBox.Size = new System.Drawing.Size(327, 143);
367      this.normalityGroupBox.TabIndex = 20;
368      this.normalityGroupBox.TabStop = false;
369      this.normalityGroupBox.Text = "2. Jarque-Bera Test for Normal Distribution";
370      //
371      // normalityTextLabel
372      //
373      this.normalityTextLabel.AutoSize = true;
374      this.normalityTextLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
375      this.normalityTextLabel.Location = new System.Drawing.Point(28, 16);
376      this.normalityTextLabel.Name = "normalityTextLabel";
377      this.normalityTextLabel.Size = new System.Drawing.Size(135, 13);
378      this.normalityTextLabel.TabIndex = 18;
379      this.normalityTextLabel.Text = "Data is normally distributed:";
380      //
381      // normalityStringConvertibleMatrixView
382      //
383      this.normalityStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
384            | System.Windows.Forms.AnchorStyles.Left)
385            | System.Windows.Forms.AnchorStyles.Right)));
386      this.normalityStringConvertibleMatrixView.Caption = "StringConvertibleMatrix View";
387      this.normalityStringConvertibleMatrixView.Content = null;
388      this.normalityStringConvertibleMatrixView.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
389      this.normalityStringConvertibleMatrixView.Location = new System.Drawing.Point(6, 35);
390      this.normalityStringConvertibleMatrixView.Name = "normalityStringConvertibleMatrixView";
391      this.normalityStringConvertibleMatrixView.ReadOnly = false;
392      this.normalityStringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false;
393      this.normalityStringConvertibleMatrixView.ShowStatisticalInformation = false;
394      this.normalityStringConvertibleMatrixView.Size = new System.Drawing.Size(312, 102);
395      this.normalityStringConvertibleMatrixView.TabIndex = 17;
396      //
397      // normalityLabel
398      //
399      this.normalityLabel.AutoSize = true;
400      this.normalityLabel.Location = new System.Drawing.Point(6, 16);
401      this.normalityLabel.MaximumSize = new System.Drawing.Size(16, 16);
402      this.normalityLabel.MinimumSize = new System.Drawing.Size(16, 16);
403      this.normalityLabel.Name = "normalityLabel";
404      this.normalityLabel.Size = new System.Drawing.Size(16, 16);
405      this.normalityLabel.TabIndex = 16;
406      //
407      // selectDataGroupBox
408      //
409      this.selectDataGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
410            | System.Windows.Forms.AnchorStyles.Right)));
411      this.selectDataGroupBox.Controls.Add(this.splitContainer1);
412      this.selectDataGroupBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
413      this.selectDataGroupBox.Location = new System.Drawing.Point(3, 3);
414      this.selectDataGroupBox.Name = "selectDataGroupBox";
415      this.selectDataGroupBox.Size = new System.Drawing.Size(327, 79);
416      this.selectDataGroupBox.TabIndex = 19;
417      this.selectDataGroupBox.TabStop = false;
418      this.selectDataGroupBox.Text = "1. Select Data";
419      //
420      // tabControl
421      //
422      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
423            | System.Windows.Forms.AnchorStyles.Left)
424            | System.Windows.Forms.AnchorStyles.Right)));
425      this.tabControl.Controls.Add(this.tabPage1);
426      this.tabControl.Controls.Add(this.tabPage2);
427      this.tabControl.Location = new System.Drawing.Point(3, 3);
428      this.tabControl.Name = "tabControl";
429      this.tabControl.SelectedIndex = 0;
430      this.tabControl.Size = new System.Drawing.Size(930, 641);
431      this.tabControl.TabIndex = 21;
432      //
433      // tabPage1
434      //
435      this.tabPage1.Controls.Add(this.splitContainer3);
436      this.tabPage1.Location = new System.Drawing.Point(4, 22);
437      this.tabPage1.Name = "tabPage1";
438      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
439      this.tabPage1.Size = new System.Drawing.Size(922, 615);
440      this.tabPage1.TabIndex = 0;
441      this.tabPage1.Text = "Tests";
442      this.tabPage1.UseVisualStyleBackColor = true;
443      //
444      // tabPage2
445      //
446      this.tabPage2.Controls.Add(this.histogramControl);
447      this.tabPage2.Location = new System.Drawing.Point(4, 22);
448      this.tabPage2.Name = "tabPage2";
449      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
450      this.tabPage2.Size = new System.Drawing.Size(922, 541);
451      this.tabPage2.TabIndex = 1;
452      this.tabPage2.Text = "Histogram";
453      this.tabPage2.UseVisualStyleBackColor = true;
454      //
455      // histogramControl
456      //
457      this.histogramControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
458            | System.Windows.Forms.AnchorStyles.Left)
459            | System.Windows.Forms.AnchorStyles.Right)));
460      this.histogramControl.CalculateExactBins = false;
461      this.histogramControl.IncrementNumberOfBins = 1;
462      this.histogramControl.Location = new System.Drawing.Point(6, 6);
463      this.histogramControl.MaximumNumberOfBins = 100000;
464      this.histogramControl.MinimumNumberOfBins = 1;
465      this.histogramControl.Name = "histogramControl";
466      this.histogramControl.NumberOfBins = 10;
467      this.histogramControl.ShowExactCheckbox = false;
468      this.histogramControl.Size = new System.Drawing.Size(910, 529);
469      this.histogramControl.TabIndex = 0;
470      //
471      // groupComTextLabel
472      //
473      this.groupComTextLabel.AutoSize = true;
474      this.groupComTextLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
475      this.groupComTextLabel.Location = new System.Drawing.Point(28, 16);
476      this.groupComTextLabel.Name = "groupComTextLabel";
477      this.groupComTextLabel.Size = new System.Drawing.Size(165, 13);
478      this.groupComTextLabel.TabIndex = 19;
479      this.groupComTextLabel.Text = "Groups have different distribution:";
480      //
481      // pairwiseTextLabel
482      //
483      this.pairwiseTextLabel.AutoSize = true;
484      this.pairwiseTextLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
485      this.pairwiseTextLabel.Location = new System.Drawing.Point(28, 46);
486      this.pairwiseTextLabel.Name = "pairwiseTextLabel";
487      this.pairwiseTextLabel.Size = new System.Drawing.Size(165, 13);
488      this.pairwiseTextLabel.TabIndex = 20;
489      this.pairwiseTextLabel.Text = "Groups have different distribution:";
490      //
491      // StatisticalTestsView
492      //
493      this.Controls.Add(this.tabControl);
494      this.Name = "StatisticalTestsView";
495      this.Size = new System.Drawing.Size(936, 647);
496      this.contextMenuStrip1.ResumeLayout(false);
497      this.splitContainer1.Panel1.ResumeLayout(false);
498      this.splitContainer1.Panel1.PerformLayout();
499      this.splitContainer1.Panel2.ResumeLayout(false);
500      this.splitContainer1.Panel2.PerformLayout();
501      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
502      this.splitContainer1.ResumeLayout(false);
503      this.splitContainer3.Panel1.ResumeLayout(false);
504      this.splitContainer3.Panel2.ResumeLayout(false);
505      ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
506      this.splitContainer3.ResumeLayout(false);
507      this.pairwiseTestGroupBox.ResumeLayout(false);
508      this.pairwiseTestGroupBox.PerformLayout();
509      this.allGroupTestGroupBox.ResumeLayout(false);
510      this.allGroupTestGroupBox.PerformLayout();
511      this.normalityGroupBox.ResumeLayout(false);
512      this.normalityGroupBox.PerformLayout();
513      this.selectDataGroupBox.ResumeLayout(false);
514      this.tabControl.ResumeLayout(false);
515      this.tabPage1.ResumeLayout(false);
516      this.tabPage2.ResumeLayout(false);
517      this.ResumeLayout(false);
518
519    }
520    #endregion
521
522    private HeuristicLab.Data.Views.StringConvertibleMatrixView stringConvertibleMatrixView;
523    private System.Windows.Forms.Label groupByLabel;
524    private System.Windows.Forms.Label label1;
525    private System.Windows.Forms.ComboBox resultComboBox;
526    private System.Windows.Forms.Label lblPVal;
527    private System.Windows.Forms.TextBox pValTextBox;
528    private System.Windows.Forms.ComboBox groupComboBox;
529    private System.Windows.Forms.SplitContainer splitContainer1;
530    private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
531    private System.Windows.Forms.ToolStripMenuItem openBoxPlotToolStripMenuItem;
532    private System.Windows.Forms.SplitContainer splitContainer3;
533    private System.Windows.Forms.GroupBox selectDataGroupBox;
534    private System.Windows.Forms.GroupBox normalityGroupBox;
535    private System.Windows.Forms.GroupBox pairwiseTestGroupBox;
536    private System.Windows.Forms.GroupBox allGroupTestGroupBox;
537    private System.Windows.Forms.Label normalityLabel;
538    private System.Windows.Forms.Label groupCompLabel;
539    private System.Windows.Forms.Label label2;
540    private System.Windows.Forms.ComboBox groupCompComboBox;
541    private System.Windows.Forms.Label label3;
542    private System.Windows.Forms.TextBox equalDistsTextBox;
543    private System.Windows.Forms.Label pairwiseLabel;
544    private Data.Views.StringConvertibleMatrixView normalityStringConvertibleMatrixView;
545    private Data.Views.StringConvertibleMatrixView pairwiseStringConvertibleMatrixView;
546    private System.Windows.Forms.Label normalityTextLabel;
547    private System.Windows.Forms.TabControl tabControl;
548    private System.Windows.Forms.TabPage tabPage1;
549    private System.Windows.Forms.TabPage tabPage2;
550    private HeuristicLab.Analysis.Views.HistogramControl histogramControl;
551    private System.Windows.Forms.Label pairwiseTextLabel;
552    private System.Windows.Forms.Label groupComTextLabel;
553  }
554}
Note: See TracBrowser for help on using the repository browser.