Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/21/12 13:27:46 (12 years ago)
Author:
sforsten
Message:

#1776: added AUC to ClassificationEnsembleSolutionAccuracyToCoveredSamples

Location:
branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationEnsembleSolutionAccuracyToCoveredSamples.Designer.cs

    r8329 r8510  
    4848      this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart();
    4949      this.SamplesComboBox = new System.Windows.Forms.ComboBox();
     50      this.AUCLabel = new System.Windows.Forms.Label();
    5051      ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit();
    5152      this.SuspendLayout();
     
    7980      this.SamplesComboBox.SelectedIndexChanged += new System.EventHandler(this.SamplesComboBox_SelectedIndexChanged);
    8081      //
    81       // ClassificationEnsembleSolutionConfidenceAccuracyDependence
     82      // AUCLabel
     83      //
     84      this.AUCLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     85                  | System.Windows.Forms.AnchorStyles.Left)
     86                  | System.Windows.Forms.AnchorStyles.Right)));
     87      this.AUCLabel.BackColor = System.Drawing.Color.Transparent;
     88      this.AUCLabel.Location = new System.Drawing.Point(162, 97);
     89      this.AUCLabel.Name = "AUCLabel";
     90      this.AUCLabel.Size = new System.Drawing.Size(29, 13);
     91      this.AUCLabel.TabIndex = 2;
     92      this.AUCLabel.Text = "AUC";
     93      this.AUCLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     94      //
     95      // ClassificationEnsembleSolutionAccuracyToCoveredSamples
    8296      //
    8397      this.AllowDrop = true;
    8498      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    8599      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     100      this.Controls.Add(this.AUCLabel);
    86101      this.Controls.Add(this.SamplesComboBox);
    87102      this.Controls.Add(this.chart);
    88       this.Name = "ClassificationEnsembleSolutionConfidenceAccuracyDependence";
     103      this.Name = "ClassificationEnsembleSolutionAccuracyToCoveredSamples";
    89104      this.Size = new System.Drawing.Size(358, 225);
    90105      ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit();
     
    97112    private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart;
    98113    private System.Windows.Forms.ComboBox SamplesComboBox;
     114    protected System.Windows.Forms.Label AUCLabel;
    99115  }
    100116}
  • branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationEnsembleSolutionAccuracyToCoveredSamples.cs

    r8507 r8510  
    6969      this.chart.ChartAreas[0].AxisY.Maximum = 1;
    7070      this.chart.ChartAreas[0].AxisY.Title = "Accuracy";
     71
     72      AUCLabel.Parent = chart;
     73      AUCLabel.BackColor = Color.Transparent;
    7174    }
    7275
     
    153156        double auc = CalculateAreaUnderCurve(series);
    154157        area.LegendToolTip = "AUC: " + auc;
     158
     159        AUCLabel.Text = "AUC: " + auc;
    155160      }
    156161    }
Note: See TracChangeset for help on using the changeset viewer.