- Timestamp:
- 08/27/13 10:56:12 (11 years ago)
- Location:
- branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/ChartAnalysisView.cs
r9904 r9908 34 34 35 35 namespace HeuristicLab.Analysis.Statistics { 36 [View(" RunCollectionChart Analysis")]36 [View("Chart Analysis")] 37 37 [Content(typeof(RunCollection), false)] 38 38 public sealed partial class ChartAnalysisView : ItemView { … … 245 245 LinearLeastSquaresFitting llsFitting = new LinearLeastSquaresFitting(); 246 246 LogFitting logFitting = new LogFitting(); 247 string[] columnNames = new string[] { "Count", "Minimum", "Maximum", "Average", "Median", "Standard Deviation", "Variance", "25th Percentile", "75th Percentile", "Avg. of Upper 25 %", " Avg. of Lower 25 %", "Avg. of First 25 %", "Avg. of Last 25 %", "Gradient", "Relative Error", "a", "b" }; 247 string[] columnNames = new string[] { "Count", "Minimum", "Maximum", "Average", "Median", "Standard Deviation", "Variance", "25th Percentile", "75th Percentile", 248 "Avg. of Upper 25 %", " Avg. of Lower 25 %", "Avg. of First 25 %", "Avg. of Last 25 %", "Linear Gradient", "Relative Error", "a (log fitted)", "b (log fitted)" }; 248 249 249 250 runs = Content.Where(x => x.Results.ContainsKey(resultName) && x.Visible).ToList(); -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/ChartAnalysisView.designer.cs
r9749 r9908 34 34 /// </summary> 35 35 private void InitializeComponent() { 36 this.components = new System.ComponentModel.Container(); 36 37 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChartAnalysisView)); 37 38 this.fittingComboBox = new System.Windows.Forms.ComboBox(); … … 46 47 this.splitContainer1 = new System.Windows.Forms.SplitContainer(); 47 48 this.infoLabel = new System.Windows.Forms.Label(); 49 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 48 50 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); 49 51 this.splitContainer.Panel1.SuspendLayout(); … … 73 75 this.addValuesButton.TabIndex = 10; 74 76 this.addValuesButton.Text = "Add Values to Results"; 77 this.toolTip.SetToolTip(this.addValuesButton, "Adds the values from the data table to the results of each run."); 75 78 this.addValuesButton.UseVisualStyleBackColor = true; 76 79 this.addValuesButton.Click += new System.EventHandler(this.addValuesButton_Click); … … 84 87 this.addLineToChart.TabIndex = 9; 85 88 this.addLineToChart.Text = "Fit Line to Chart"; 89 this.toolTip.SetToolTip(this.addLineToChart, "Inserts the fitted line/curve into each chart of the run collection. "); 86 90 this.addLineToChart.UseVisualStyleBackColor = true; 87 91 this.addLineToChart.Click += new System.EventHandler(this.addLineToChart_Click); … … 227 231 private System.Windows.Forms.Label infoLabel; 228 232 private System.Windows.Forms.SplitContainer splitContainer1; 233 private System.Windows.Forms.ToolTip toolTip; 229 234 } 230 235 } -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/ChartAnalysisView.resx
r9749 r9908 118 118 <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> 119 119 </resheader> 120 <metadata name="toolTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 121 <value>17, 17</value> 122 </metadata> 120 123 <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> 121 124 <data name="infoLabel.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> -
branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/StatisticalTestingView.designer.cs
r9749 r9908 183 183 // pValTextBox 184 184 // 185 this.pValTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 186 | System.Windows.Forms.AnchorStyles.Right))); 185 187 this.pValTextBox.Location = new System.Drawing.Point(58, 48); 186 188 this.pValTextBox.Name = "pValTextBox"; … … 317 319 // equalDistsTextBox 318 320 // 321 this.equalDistsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 322 | System.Windows.Forms.AnchorStyles.Right))); 319 323 this.equalDistsTextBox.Location = new System.Drawing.Point(95, 87); 320 324 this.equalDistsTextBox.Name = "equalDistsTextBox"; 321 325 this.equalDistsTextBox.ReadOnly = true; 322 this.equalDistsTextBox.Size = new System.Drawing.Size(1 49, 20);326 this.equalDistsTextBox.Size = new System.Drawing.Size(152, 20); 323 327 this.equalDistsTextBox.TabIndex = 18; 324 328 // … … 344 348 // groupCompComboBox 345 349 // 350 this.groupCompComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 351 | System.Windows.Forms.AnchorStyles.Right))); 346 352 this.groupCompComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 347 353 this.groupCompComboBox.FormattingEnabled = true;
Note: See TracChangeset
for help on using the changeset viewer.