summaryrefslogtreecommitdiff
path: root/report/report_content.rb
diff options
context:
space:
mode:
authormguetlein <martin.guetlein@gmail.com>2011-08-18 10:38:51 +0200
committermguetlein <martin.guetlein@gmail.com>2011-08-18 10:38:51 +0200
commitd27d53d98238ede80fc3b1a0c277ca890a84c736 (patch)
treec40f2952c7b569976f5de8e754937e85c9a75ed6 /report/report_content.rb
parent01cc1d014f1f9ccdeb5925e3fa7d64b2d06c2085 (diff)
fix ROC stuff, rename weighted_auc to average_auc
Diffstat (limited to 'report/report_content.rb')
-rwxr-xr-xreport/report_content.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/report/report_content.rb b/report/report_content.rb
index 8c437a8..9c33038 100755
--- a/report/report_content.rb
+++ b/report/report_content.rb
@@ -179,13 +179,14 @@ class Reports::ReportContent
def add_roc_plot( validation_set,
accept_value,
split_set_attribute=nil,
- image_title = "ROC Plot",
+ image_title = nil,
section_text="")
#section_roc = @xml_report.add_section(@current_section, section_title)
section_roc = @current_section
prediction_set = validation_set.collect{ |v| v.get_predictions && v.get_predictions.confidence_values_available? }
-
+ image_title = "ROC Plot (true class is '"+accept_value.to_s+"')" unless image_title
+
if prediction_set.size>0
if prediction_set.size!=validation_set.size
section_text += "\nWARNING: roc plot information not available for all validation results"