summaryrefslogtreecommitdiff
path: root/report/plot_factory.rb
diff options
context:
space:
mode:
Diffstat (limited to 'report/plot_factory.rb')
-rw-r--r--report/plot_factory.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/report/plot_factory.rb b/report/plot_factory.rb
index 2a621f4..dfb1369 100644
--- a/report/plot_factory.rb
+++ b/report/plot_factory.rb
@@ -115,7 +115,9 @@ module Reports
LOGGER.warn "could not create ROC plot for "+value.to_s
end
end
- RubyPlot::plot_lines(out_file, "ROC-Plot", x_label, y_label, names, fp_rates, tp_rates )
+ out_files.each do |out_file|
+ RubyPlot::plot_lines(out_file, "ROC-Plot", x_label, y_label, names, fp_rates, tp_rates )
+ end
else
data = transform_roc_predictions(validation_set, class_value, show_single_curves)
labels = []