Changeset 9759 for branches/StatisticalTesting
- Timestamp:
- 07/26/13 10:13:02 (11 years ago)
- Location:
- branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/CorrelationView.designer.cs
r9706 r9759 93 93 this.calculateCorrelation.Size = new System.Drawing.Size(185, 23); 94 94 this.calculateCorrelation.TabIndex = 9; 95 this.calculateCorrelation.Text = "Calculate correlation coefficient ";95 this.calculateCorrelation.Text = "Calculate correlation coefficients"; 96 96 this.calculateCorrelation.UseVisualStyleBackColor = true; 97 97 this.calculateCorrelation.Click += new System.EventHandler(this.calculateCorrelation_Click); -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/InfoBox.Designer.cs
r9742 r9759 53 53 this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 54 54 this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; 55 this.okButton.Location = new System.Drawing.Point(549, 309);55 this.okButton.Location = new System.Drawing.Point(549, 459); 56 56 this.okButton.Name = "okButton"; 57 57 this.okButton.Size = new System.Drawing.Size(75, 23); … … 71 71 this.infoRichTextBox.Name = "infoRichTextBox"; 72 72 this.infoRichTextBox.ReadOnly = true; 73 this.infoRichTextBox.Size = new System.Drawing.Size(612, 291);73 this.infoRichTextBox.Size = new System.Drawing.Size(612, 441); 74 74 this.infoRichTextBox.TabIndex = 1; 75 75 this.infoRichTextBox.Text = ""; … … 78 78 // 79 79 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit; 80 this.ClientSize = new System.Drawing.Size(636, 344);80 this.ClientSize = new System.Drawing.Size(636, 494); 81 81 this.Controls.Add(this.infoRichTextBox); 82 82 this.Controls.Add(this.okButton); -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestingView.cs
r9749 r9759 261 261 DoubleMatrix pValsMatrix = new DoubleMatrix(5, stringConvertibleMatrixView.Content.Columns); 262 262 pValsMatrix.ColumnNames = stringConvertibleMatrixView.Content.ColumnNames; 263 pValsMatrix.RowNames = new string[] { "p-Value of Mann WhitneyU", "p-Value of T-Test", "Necessary Sample Size for T-Test", "Cohen's d", "Hedges' g" };263 pValsMatrix.RowNames = new string[] { "p-Value of Mann-Whitney U", "p-Value of T-Test", "Necessary Sample Size for T-Test", "Cohen's d", "Hedges' g" }; 264 264 265 265 double mwuBothtails;
Note: See TracChangeset
for help on using the changeset viewer.