Free cookie consent management tool by TermsFeed Policy Generator

source: branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/SampleSizeChecker.designer.cs @ 9706

Last change on this file since 9706 was 9706, checked in by ascheibe, 11 years ago

#2031

  • added exponential fitting
  • added logarithmic fitting
  • refactored fitting code
  • updated license headers
File size: 7.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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 SampleSizeChecker {
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.stringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
48      this.label1 = new System.Windows.Forms.Label();
49      this.resultComboBox = new System.Windows.Forms.ComboBox();
50      this.estimateSampleSizeButton = new System.Windows.Forms.Button();
51      this.precisionTextBox = new System.Windows.Forms.TextBox();
52      this.confIntervalTextBox = new System.Windows.Forms.TextBox();
53      this.label2 = new System.Windows.Forms.Label();
54      this.label3 = new System.Windows.Forms.Label();
55      this.SuspendLayout();
56      //
57      // stringConvertibleMatrixView
58      //
59      this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
60            | System.Windows.Forms.AnchorStyles.Left)
61            | System.Windows.Forms.AnchorStyles.Right)));
62      this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View";
63      this.stringConvertibleMatrixView.Content = null;
64      this.stringConvertibleMatrixView.Location = new System.Drawing.Point(3, 30);
65      this.stringConvertibleMatrixView.Name = "stringConvertibleMatrixView";
66      this.stringConvertibleMatrixView.ReadOnly = false;
67      this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false;
68      this.stringConvertibleMatrixView.ShowStatisticalInformation = true;
69      this.stringConvertibleMatrixView.Size = new System.Drawing.Size(746, 329);
70      this.stringConvertibleMatrixView.TabIndex = 0;
71      //
72      // label1
73      //
74      this.label1.AutoSize = true;
75      this.label1.Location = new System.Drawing.Point(5, 6);
76      this.label1.Name = "label1";
77      this.label1.Size = new System.Drawing.Size(40, 13);
78      this.label1.TabIndex = 6;
79      this.label1.Text = "Result:";
80      //
81      // resultComboBox
82      //
83      this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
84            | System.Windows.Forms.AnchorStyles.Right)));
85      this.resultComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
86      this.resultComboBox.FormattingEnabled = true;
87      this.resultComboBox.Location = new System.Drawing.Point(71, 3);
88      this.resultComboBox.Name = "resultComboBox";
89      this.resultComboBox.Size = new System.Drawing.Size(678, 21);
90      this.resultComboBox.TabIndex = 5;
91      this.resultComboBox.SelectedValueChanged += new System.EventHandler(this.resultComboBox_SelectedValueChanged);
92      //
93      // estimateSampleSizeButton
94      //
95      this.estimateSampleSizeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
96      this.estimateSampleSizeButton.Location = new System.Drawing.Point(630, 365);
97      this.estimateSampleSizeButton.Name = "estimateSampleSizeButton";
98      this.estimateSampleSizeButton.Size = new System.Drawing.Size(119, 23);
99      this.estimateSampleSizeButton.TabIndex = 9;
100      this.estimateSampleSizeButton.Text = "Estimate sample size";
101      this.estimateSampleSizeButton.UseVisualStyleBackColor = true;
102      this.estimateSampleSizeButton.Click += new System.EventHandler(this.estimateSampleSizeButton_Click);
103      //
104      // precisionTextBox
105      //
106      this.precisionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
107      this.precisionTextBox.Location = new System.Drawing.Point(64, 367);
108      this.precisionTextBox.Name = "precisionTextBox";
109      this.precisionTextBox.Size = new System.Drawing.Size(106, 20);
110      this.precisionTextBox.TabIndex = 10;
111      //
112      // confIntervalTextBox
113      //
114      this.confIntervalTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
115      this.confIntervalTextBox.Location = new System.Drawing.Point(331, 368);
116      this.confIntervalTextBox.Name = "confIntervalTextBox";
117      this.confIntervalTextBox.Size = new System.Drawing.Size(100, 20);
118      this.confIntervalTextBox.TabIndex = 11;
119      //
120      // label2
121      //
122      this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
123      this.label2.AutoSize = true;
124      this.label2.Location = new System.Drawing.Point(5, 370);
125      this.label2.Name = "label2";
126      this.label2.Size = new System.Drawing.Size(53, 13);
127      this.label2.TabIndex = 12;
128      this.label2.Text = "Precision:";
129      //
130      // label3
131      //
132      this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
133      this.label3.AutoSize = true;
134      this.label3.Location = new System.Drawing.Point(223, 370);
135      this.label3.Name = "label3";
136      this.label3.Size = new System.Drawing.Size(102, 13);
137      this.label3.TabIndex = 13;
138      this.label3.Text = "Confidence Interval:";
139      //
140      // SampleSizeChecker
141      //
142      this.Controls.Add(this.label3);
143      this.Controls.Add(this.label2);
144      this.Controls.Add(this.confIntervalTextBox);
145      this.Controls.Add(this.precisionTextBox);
146      this.Controls.Add(this.estimateSampleSizeButton);
147      this.Controls.Add(this.label1);
148      this.Controls.Add(this.resultComboBox);
149      this.Controls.Add(this.stringConvertibleMatrixView);
150      this.Name = "SampleSizeChecker";
151      this.Size = new System.Drawing.Size(752, 391);
152      this.ResumeLayout(false);
153      this.PerformLayout();
154
155    }
156    #endregion
157
158    private HeuristicLab.Data.Views.StringConvertibleMatrixView stringConvertibleMatrixView;
159    private System.Windows.Forms.Label label1;
160    private System.Windows.Forms.ComboBox resultComboBox;
161    private System.Windows.Forms.Button estimateSampleSizeButton;
162    private System.Windows.Forms.TextBox precisionTextBox;
163    private System.Windows.Forms.TextBox confIntervalTextBox;
164    private System.Windows.Forms.Label label2;
165    private System.Windows.Forms.Label label3;
166  }
167}
Note: See TracBrowser for help on using the repository browser.