Free cookie consent management tool by TermsFeed Policy Generator

Changeset 9908


Ignore:
Timestamp:
08/27/13 10:56:12 (11 years ago)
Author:
ascheibe
Message:

#2031 improved chart analysis view

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  
    3434
    3535namespace HeuristicLab.Analysis.Statistics {
    36   [View("RunCollection Chart Analysis")]
     36  [View("Chart Analysis")]
    3737  [Content(typeof(RunCollection), false)]
    3838  public sealed partial class ChartAnalysisView : ItemView {
     
    245245      LinearLeastSquaresFitting llsFitting = new LinearLeastSquaresFitting();
    246246      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)" };
    248249
    249250      runs = Content.Where(x => x.Results.ContainsKey(resultName) && x.Visible).ToList();
  • branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/ChartAnalysisView.designer.cs

    r9749 r9908  
    3434    /// </summary>
    3535    private void InitializeComponent() {
     36      this.components = new System.ComponentModel.Container();
    3637      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChartAnalysisView));
    3738      this.fittingComboBox = new System.Windows.Forms.ComboBox();
     
    4647      this.splitContainer1 = new System.Windows.Forms.SplitContainer();
    4748      this.infoLabel = new System.Windows.Forms.Label();
     49      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
    4850      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
    4951      this.splitContainer.Panel1.SuspendLayout();
     
    7375      this.addValuesButton.TabIndex = 10;
    7476      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.");
    7578      this.addValuesButton.UseVisualStyleBackColor = true;
    7679      this.addValuesButton.Click += new System.EventHandler(this.addValuesButton_Click);
     
    8487      this.addLineToChart.TabIndex = 9;
    8588      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. ");
    8690      this.addLineToChart.UseVisualStyleBackColor = true;
    8791      this.addLineToChart.Click += new System.EventHandler(this.addLineToChart_Click);
     
    227231    private System.Windows.Forms.Label infoLabel;
    228232    private System.Windows.Forms.SplitContainer splitContainer1;
     233    private System.Windows.Forms.ToolTip toolTip;
    229234  }
    230235}
  • branches/StatisticalTesting/HeuristicLab.Analysis.Statistics/3.3/ChartAnalysisView.resx

    r9749 r9908  
    118118    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    119119  </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>
    120123  <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    121124  <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  
    183183      // pValTextBox
    184184      //
     185      this.pValTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     186            | System.Windows.Forms.AnchorStyles.Right)));
    185187      this.pValTextBox.Location = new System.Drawing.Point(58, 48);
    186188      this.pValTextBox.Name = "pValTextBox";
     
    317319      // equalDistsTextBox
    318320      //
     321      this.equalDistsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     322            | System.Windows.Forms.AnchorStyles.Right)));
    319323      this.equalDistsTextBox.Location = new System.Drawing.Point(95, 87);
    320324      this.equalDistsTextBox.Name = "equalDistsTextBox";
    321325      this.equalDistsTextBox.ReadOnly = true;
    322       this.equalDistsTextBox.Size = new System.Drawing.Size(149, 20);
     326      this.equalDistsTextBox.Size = new System.Drawing.Size(152, 20);
    323327      this.equalDistsTextBox.TabIndex = 18;
    324328      //
     
    344348      // groupCompComboBox
    345349      //
     350      this.groupCompComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     351            | System.Windows.Forms.AnchorStyles.Right)));
    346352      this.groupCompComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    347353      this.groupCompComboBox.FormattingEnabled = true;
Note: See TracChangeset for help on using the changeset viewer.