summaryrefslogtreecommitdiff
path: root/report
diff options
context:
space:
mode:
authormguetlein <martin.guetlein@gmail.com>2011-08-18 13:46:10 +0200
committermguetlein <martin.guetlein@gmail.com>2011-08-18 13:46:10 +0200
commit3f1714c78e46f391b951b1a01adcd9badc713891 (patch)
tree27c75c6897ebdf24625ca7ebd66e25f0a63388ae /report
parent6e10dfb139f584a1b2cc53a30881771f67ac6547 (diff)
add npv calculation, add ppv (renamed from precision) and npv to important classificaiton stats
Diffstat (limited to 'report')
-rwxr-xr-xreport/report_factory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/report/report_factory.rb b/report/report_factory.rb
index 2a50869..f6f76bd 100755
--- a/report/report_factory.rb
+++ b/report/report_factory.rb
@@ -6,7 +6,7 @@ VAL_ATTR_CV = [ :algorithm_uri, :dataset_uri, :num_folds, :crossvalidation_fold
# selected attributes of interest when performing classification
VAL_ATTR_CLASS = [ :num_instances, :num_unpredicted, :accuracy, :weighted_accuracy, :average_area_under_roc,
- :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate ]
+ :area_under_roc, :f_measure, :true_positive_rate, :true_negative_rate, :positive_predictive_value, :negative_predictive_value ]
VAL_ATTR_REGR = [ :num_instances, :num_unpredicted, :root_mean_squared_error,
:weighted_root_mean_squared_error, :mean_absolute_error, :weighted_mean_absolute_error, :r_square, :weighted_r_square,
:sample_correlation_coefficient ]