Changeset 11695
- Timestamp:
- 12/18/14 11:52:19 (10 years ago)
- Location:
- branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestsView.cs
r11693 r11695 249 249 private void ResetUI() { 250 250 normalityLabel.Image = null; 251 normalityTextLabel.Text = string.Empty; 251 252 groupCompLabel.Image = null; 253 groupComTextLabel.Text = string.Empty; 252 254 pairwiseLabel.Image = null; 255 pairwiseTextLabel.Text = string.Empty; 256 253 257 pValTextBox.Text = string.Empty; 254 258 equalDistsTextBox.Text = string.Empty; … … 275 279 if (data.Any(x => x.Length <= requiredSampleSize)) { 276 280 if (showMessage) 277 MessageBox.Show(this, "You need to choose samples with a size greater 5.", "HeuristicLab", MessageBoxButtons.OK, 281 MessageBox.Show(this, "You need at least " + requiredSampleSize 282 + " samples per group for computing hypothesis tests.", "HeuristicLab", MessageBoxButtons.OK, 278 283 MessageBoxIcon.Error); 279 284 return false; … … 324 329 pValTextBox.Text = pval.ToString(); 325 330 if (pval < significanceLevel) { 326 this.Invoke(new Action(() => { groupCompLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; })); 331 this.Invoke(new Action(() => { 332 groupCompLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; 333 groupComTextLabel.Text = "There are groups with different distributions"; 334 })); 327 335 } else { 328 this.Invoke(new Action(() => { groupCompLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; })); 336 this.Invoke(new Action(() => { 337 groupCompLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; 338 groupComTextLabel.Text = "Groups have an equal distribution"; 339 })); 329 340 } 330 341 } … … 341 352 // p-value is below significance level and thus the null hypothesis (data is normally distributed) is rejected. 342 353 if (res.Any(x => x < significanceLevel)) { 343 this.Invoke(new Action(() => { normalityLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; })); 354 this.Invoke(new Action(() => { 355 normalityLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; 356 normalityTextLabel.Text = "Some groups may not be normally distributed"; 357 })); 344 358 } else { 345 this.Invoke(new Action(() => { normalityLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; })); 359 this.Invoke(new Action(() => { 360 normalityLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; 361 normalityTextLabel.Text = "All sample data is normally distributed"; 362 })); 346 363 } 347 364 } … … 389 406 390 407 if (cnt == 0) { 391 this.Invoke(new Action(() => { pairwiseLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; })); 408 this.Invoke(new Action(() => { 409 pairwiseLabel.Image = HeuristicLab.Analysis.Statistics.Resources.Default; 410 pairwiseTextLabel.Text = "All groups have different distributions"; 411 })); 392 412 } else { 393 this.Invoke(new Action(() => { pairwiseLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; })); 413 this.Invoke(new Action(() => { 414 pairwiseLabel.Image = HeuristicLab.Common.Resources.VSImageLibrary.Warning; 415 pairwiseTextLabel.Text = "Some groups have equal distributions"; 416 })); 394 417 } 395 418 } -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestsView.designer.cs
r11693 r11695 67 67 this.groupCompLabel = new System.Windows.Forms.Label(); 68 68 this.normalityGroupBox = new System.Windows.Forms.GroupBox(); 69 this. label4= new System.Windows.Forms.Label();69 this.normalityTextLabel = new System.Windows.Forms.Label(); 70 70 this.normalityStringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView(); 71 71 this.normalityLabel = new System.Windows.Forms.Label(); … … 75 75 this.tabPage2 = new System.Windows.Forms.TabPage(); 76 76 this.histogramControl = new HeuristicLab.Analysis.Views.HistogramControl(); 77 this.groupComTextLabel = new System.Windows.Forms.Label(); 78 this.pairwiseTextLabel = new System.Windows.Forms.Label(); 77 79 this.contextMenuStrip1.SuspendLayout(); 78 80 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); … … 95 97 // stringConvertibleMatrixView 96 98 // 97 this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 98 | System.Windows.Forms.AnchorStyles.Left) 99 this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 100 | System.Windows.Forms.AnchorStyles.Left) 99 101 | System.Windows.Forms.AnchorStyles.Right))); 100 102 this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View"; … … 106 108 this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false; 107 109 this.stringConvertibleMatrixView.ShowStatisticalInformation = true; 108 this.stringConvertibleMatrixView.Size = new System.Drawing.Size(567, 5 23);110 this.stringConvertibleMatrixView.Size = new System.Drawing.Size(567, 597); 109 111 this.stringConvertibleMatrixView.TabIndex = 0; 110 112 // … … 145 147 // resultComboBox 146 148 // 147 this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 149 this.resultComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 148 150 | System.Windows.Forms.AnchorStyles.Right))); 149 151 this.resultComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; … … 160 162 this.lblPVal.AutoSize = true; 161 163 this.lblPVal.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 162 this.lblPVal.Location = new System.Drawing.Point(6, 22);164 this.lblPVal.Location = new System.Drawing.Point(6, 39); 163 165 this.lblPVal.Name = "lblPVal"; 164 166 this.lblPVal.Size = new System.Drawing.Size(46, 13); … … 169 171 // pValTextBox 170 172 // 171 this.pValTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 173 this.pValTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 172 174 | System.Windows.Forms.AnchorStyles.Right))); 173 175 this.pValTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 174 this.pValTextBox.Location = new System.Drawing.Point(58, 19);176 this.pValTextBox.Location = new System.Drawing.Point(58, 36); 175 177 this.pValTextBox.Name = "pValTextBox"; 176 178 this.pValTextBox.ReadOnly = true; 177 this.pValTextBox.Size = new System.Drawing.Size(2 41, 20);179 this.pValTextBox.Size = new System.Drawing.Size(263, 20); 178 180 this.pValTextBox.TabIndex = 13; 179 181 // 180 182 // groupComboBox 181 183 // 182 this.groupComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 184 this.groupComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 183 185 | System.Windows.Forms.AnchorStyles.Right))); 184 186 this.groupComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; … … 193 195 // splitContainer1 194 196 // 195 this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 196 | System.Windows.Forms.AnchorStyles.Left) 197 this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 198 | System.Windows.Forms.AnchorStyles.Left) 197 199 | System.Windows.Forms.AnchorStyles.Right))); 198 200 this.splitContainer1.Location = new System.Drawing.Point(6, 19); … … 215 217 // splitContainer3 216 218 // 217 this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 218 | System.Windows.Forms.AnchorStyles.Left) 219 this.splitContainer3.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 220 | System.Windows.Forms.AnchorStyles.Left) 219 221 | System.Windows.Forms.AnchorStyles.Right))); 220 222 this.splitContainer3.Location = new System.Drawing.Point(6, 6); … … 231 233 this.splitContainer3.Panel2.Controls.Add(this.normalityGroupBox); 232 234 this.splitContainer3.Panel2.Controls.Add(this.selectDataGroupBox); 233 this.splitContainer3.Size = new System.Drawing.Size(910, 529);235 this.splitContainer3.Size = new System.Drawing.Size(910, 603); 234 236 this.splitContainer3.SplitterDistance = 573; 235 237 this.splitContainer3.TabIndex = 20; … … 237 239 // pairwiseTestGroupBox 238 240 // 239 this.pairwiseTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 240 | System.Windows.Forms.AnchorStyles.Left) 241 | System.Windows.Forms.AnchorStyles.Right))); 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); 242 245 this.pairwiseTestGroupBox.Controls.Add(this.pairwiseStringConvertibleMatrixView); 243 246 this.pairwiseTestGroupBox.Controls.Add(this.pairwiseLabel); … … 247 250 this.pairwiseTestGroupBox.Controls.Add(this.groupCompComboBox); 248 251 this.pairwiseTestGroupBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 249 this.pairwiseTestGroupBox.Location = new System.Drawing.Point(3, 289);252 this.pairwiseTestGroupBox.Location = new System.Drawing.Point(3, 306); 250 253 this.pairwiseTestGroupBox.Name = "pairwiseTestGroupBox"; 251 this.pairwiseTestGroupBox.Size = new System.Drawing.Size(327, 2 18);254 this.pairwiseTestGroupBox.Size = new System.Drawing.Size(327, 275); 252 255 this.pairwiseTestGroupBox.TabIndex = 22; 253 256 this.pairwiseTestGroupBox.TabStop = false; … … 256 259 // pairwiseStringConvertibleMatrixView 257 260 // 258 this.pairwiseStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 259 | System.Windows.Forms.AnchorStyles.Left) 261 this.pairwiseStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 262 | System.Windows.Forms.AnchorStyles.Left) 260 263 | System.Windows.Forms.AnchorStyles.Right))); 261 264 this.pairwiseStringConvertibleMatrixView.Caption = "StringConvertibleMatrix View"; 262 265 this.pairwiseStringConvertibleMatrixView.Content = null; 263 266 this.pairwiseStringConvertibleMatrixView.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 264 this.pairwiseStringConvertibleMatrixView.Location = new System.Drawing.Point(6, 72);267 this.pairwiseStringConvertibleMatrixView.Location = new System.Drawing.Point(6, 97); 265 268 this.pairwiseStringConvertibleMatrixView.Name = "pairwiseStringConvertibleMatrixView"; 266 269 this.pairwiseStringConvertibleMatrixView.ReadOnly = false; 267 270 this.pairwiseStringConvertibleMatrixView.ShowRowsAndColumnsTextBox = false; 268 271 this.pairwiseStringConvertibleMatrixView.ShowStatisticalInformation = false; 269 this.pairwiseStringConvertibleMatrixView.Size = new System.Drawing.Size(315, 1 40);272 this.pairwiseStringConvertibleMatrixView.Size = new System.Drawing.Size(315, 172); 270 273 this.pairwiseStringConvertibleMatrixView.TabIndex = 19; 271 274 // 272 275 // pairwiseLabel 273 276 // 274 this.pairwiseLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));275 277 this.pairwiseLabel.AutoSize = true; 276 this.pairwiseLabel.Location = new System.Drawing.Point( 305, 47);278 this.pairwiseLabel.Location = new System.Drawing.Point(6, 44); 277 279 this.pairwiseLabel.MaximumSize = new System.Drawing.Size(16, 16); 278 280 this.pairwiseLabel.MinimumSize = new System.Drawing.Size(16, 16); … … 285 287 this.label3.AutoSize = true; 286 288 this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 287 this.label3.Location = new System.Drawing.Point(6, 49);289 this.label3.Location = new System.Drawing.Point(6, 68); 288 290 this.label3.Name = "label3"; 289 291 this.label3.Size = new System.Drawing.Size(74, 13); … … 294 296 // equalDistsTextBox 295 297 // 296 this.equalDistsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 298 this.equalDistsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 297 299 | System.Windows.Forms.AnchorStyles.Right))); 298 300 this.equalDistsTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 299 this.equalDistsTextBox.Location = new System.Drawing.Point( 123, 46);301 this.equalDistsTextBox.Location = new System.Drawing.Point(86, 65); 300 302 this.equalDistsTextBox.Name = "equalDistsTextBox"; 301 303 this.equalDistsTextBox.ReadOnly = true; 302 this.equalDistsTextBox.Size = new System.Drawing.Size( 176, 20);304 this.equalDistsTextBox.Size = new System.Drawing.Size(235, 20); 303 305 this.equalDistsTextBox.TabIndex = 18; 304 306 // … … 315 317 // groupCompComboBox 316 318 // 317 this.groupCompComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 319 this.groupCompComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 318 320 | System.Windows.Forms.AnchorStyles.Right))); 319 321 this.groupCompComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; … … 328 330 // allGroupTestGroupBox 329 331 // 330 this.allGroupTestGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 331 | System.Windows.Forms.AnchorStyles.Right))); 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); 332 335 this.allGroupTestGroupBox.Controls.Add(this.groupCompLabel); 333 336 this.allGroupTestGroupBox.Controls.Add(this.lblPVal); … … 336 339 this.allGroupTestGroupBox.Location = new System.Drawing.Point(3, 237); 337 340 this.allGroupTestGroupBox.Name = "allGroupTestGroupBox"; 338 this.allGroupTestGroupBox.Size = new System.Drawing.Size(327, 46);341 this.allGroupTestGroupBox.Size = new System.Drawing.Size(327, 63); 339 342 this.allGroupTestGroupBox.TabIndex = 21; 340 343 this.allGroupTestGroupBox.TabStop = false; … … 343 346 // groupCompLabel 344 347 // 345 this.groupCompLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));346 348 this.groupCompLabel.AutoSize = true; 347 this.groupCompLabel.Location = new System.Drawing.Point( 305, 22);349 this.groupCompLabel.Location = new System.Drawing.Point(6, 16); 348 350 this.groupCompLabel.MaximumSize = new System.Drawing.Size(16, 16); 349 351 this.groupCompLabel.MinimumSize = new System.Drawing.Size(16, 16); … … 354 356 // normalityGroupBox 355 357 // 356 this.normalityGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 357 | System.Windows.Forms.AnchorStyles.Right))); 358 this.normalityGroupBox.Controls.Add(this. label4);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); 359 361 this.normalityGroupBox.Controls.Add(this.normalityStringConvertibleMatrixView); 360 362 this.normalityGroupBox.Controls.Add(this.normalityLabel); … … 367 369 this.normalityGroupBox.Text = "2. Jarque-Bera Test for Normal Distribution"; 368 370 // 369 // label4370 // 371 this. label4.AutoSize = true;372 this. label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));373 this. label4.Location = new System.Drawing.Point(6, 16);374 this. label4.Name = "label4";375 this. label4.Size = new System.Drawing.Size(135, 13);376 this. label4.TabIndex = 18;377 this. label4.Text = "Data is normally distributed:";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:"; 378 380 // 379 381 // normalityStringConvertibleMatrixView 380 382 // 381 this.normalityStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 382 | System.Windows.Forms.AnchorStyles.Left) 383 this.normalityStringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 384 | System.Windows.Forms.AnchorStyles.Left) 383 385 | System.Windows.Forms.AnchorStyles.Right))); 384 386 this.normalityStringConvertibleMatrixView.Caption = "StringConvertibleMatrix View"; … … 396 398 // 397 399 this.normalityLabel.AutoSize = true; 398 this.normalityLabel.Location = new System.Drawing.Point( 156, 16);400 this.normalityLabel.Location = new System.Drawing.Point(6, 16); 399 401 this.normalityLabel.MaximumSize = new System.Drawing.Size(16, 16); 400 402 this.normalityLabel.MinimumSize = new System.Drawing.Size(16, 16); … … 405 407 // selectDataGroupBox 406 408 // 407 this.selectDataGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 409 this.selectDataGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 408 410 | System.Windows.Forms.AnchorStyles.Right))); 409 411 this.selectDataGroupBox.Controls.Add(this.splitContainer1); … … 418 420 // tabControl 419 421 // 420 this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 421 | System.Windows.Forms.AnchorStyles.Left) 422 this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 423 | System.Windows.Forms.AnchorStyles.Left) 422 424 | System.Windows.Forms.AnchorStyles.Right))); 423 425 this.tabControl.Controls.Add(this.tabPage1); … … 426 428 this.tabControl.Name = "tabControl"; 427 429 this.tabControl.SelectedIndex = 0; 428 this.tabControl.Size = new System.Drawing.Size(930, 567);430 this.tabControl.Size = new System.Drawing.Size(930, 641); 429 431 this.tabControl.TabIndex = 21; 430 432 // … … 435 437 this.tabPage1.Name = "tabPage1"; 436 438 this.tabPage1.Padding = new System.Windows.Forms.Padding(3); 437 this.tabPage1.Size = new System.Drawing.Size(922, 541);439 this.tabPage1.Size = new System.Drawing.Size(922, 615); 438 440 this.tabPage1.TabIndex = 0; 439 441 this.tabPage1.Text = "Tests"; … … 451 453 this.tabPage2.UseVisualStyleBackColor = true; 452 454 // 453 // dataTableView 454 // 455 this.histogramControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 456 | System.Windows.Forms.AnchorStyles.Left) 457 | System.Windows.Forms.AnchorStyles.Right))); 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; 458 462 this.histogramControl.Location = new System.Drawing.Point(6, 6); 459 this.histogramControl.Name = "dataTableView"; 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; 460 468 this.histogramControl.Size = new System.Drawing.Size(910, 529); 461 469 this.histogramControl.TabIndex = 0; 462 470 // 463 // StatisticalTestingView 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 464 492 // 465 493 this.Controls.Add(this.tabControl); 466 494 this.Name = "StatisticalTestsView"; 467 this.Size = new System.Drawing.Size(936, 573);495 this.Size = new System.Drawing.Size(936, 647); 468 496 this.contextMenuStrip1.ResumeLayout(false); 469 497 this.splitContainer1.Panel1.ResumeLayout(false); … … 516 544 private Data.Views.StringConvertibleMatrixView normalityStringConvertibleMatrixView; 517 545 private Data.Views.StringConvertibleMatrixView pairwiseStringConvertibleMatrixView; 518 private System.Windows.Forms.Label label4;546 private System.Windows.Forms.Label normalityTextLabel; 519 547 private System.Windows.Forms.TabControl tabControl; 520 548 private System.Windows.Forms.TabPage tabPage1; 521 549 private System.Windows.Forms.TabPage tabPage2; 522 550 private HeuristicLab.Analysis.Views.HistogramControl histogramControl; 551 private System.Windows.Forms.Label pairwiseTextLabel; 552 private System.Windows.Forms.Label groupComTextLabel; 523 553 } 524 554 }
Note: See TracChangeset
for help on using the changeset viewer.