Changeset 8510
- Timestamp:
- 08/21/12 13:27:46 (12 years ago)
- 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 48 48 this.chart = new HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart(); 49 49 this.SamplesComboBox = new System.Windows.Forms.ComboBox(); 50 this.AUCLabel = new System.Windows.Forms.Label(); 50 51 ((System.ComponentModel.ISupportInitialize)(this.chart)).BeginInit(); 51 52 this.SuspendLayout(); … … 79 80 this.SamplesComboBox.SelectedIndexChanged += new System.EventHandler(this.SamplesComboBox_SelectedIndexChanged); 80 81 // 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 82 96 // 83 97 this.AllowDrop = true; 84 98 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 85 99 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 100 this.Controls.Add(this.AUCLabel); 86 101 this.Controls.Add(this.SamplesComboBox); 87 102 this.Controls.Add(this.chart); 88 this.Name = "ClassificationEnsembleSolution ConfidenceAccuracyDependence";103 this.Name = "ClassificationEnsembleSolutionAccuracyToCoveredSamples"; 89 104 this.Size = new System.Drawing.Size(358, 225); 90 105 ((System.ComponentModel.ISupportInitialize)(this.chart)).EndInit(); … … 97 112 private HeuristicLab.Visualization.ChartControlsExtensions.EnhancedChart chart; 98 113 private System.Windows.Forms.ComboBox SamplesComboBox; 114 protected System.Windows.Forms.Label AUCLabel; 99 115 } 100 116 } -
branches/ClassificationEnsembleVoting/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationEnsembleSolutionAccuracyToCoveredSamples.cs
r8507 r8510 69 69 this.chart.ChartAreas[0].AxisY.Maximum = 1; 70 70 this.chart.ChartAreas[0].AxisY.Title = "Accuracy"; 71 72 AUCLabel.Parent = chart; 73 AUCLabel.BackColor = Color.Transparent; 71 74 } 72 75 … … 153 156 double auc = CalculateAreaUnderCurve(series); 154 157 area.LegendToolTip = "AUC: " + auc; 158 159 AUCLabel.Text = "AUC: " + auc; 155 160 } 156 161 }
Note: See TracChangeset
for help on using the changeset viewer.