summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Vorgrimmler <vorgrimmlerdavid@gmx.de>2012-06-19 15:25:19 +0200
committerDavid Vorgrimmler <vorgrimmlerdavid@gmx.de>2012-06-19 15:25:19 +0200
commit9f1e501dc422c93c2a25d0530b71fbac2870f446 (patch)
treee0c2936b0b56f009f81a4bdb52f7fc2fa6d99b03
parent5c09623c3328808e44ab49fed6bff804eabbcd6f (diff)
Removed fast_embedding in test_feature_value_plot
-rw-r--r--r-util.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/r-util.rb b/r-util.rb
index 829a8ae..f8e5ea4 100644
--- a/r-util.rb
+++ b/r-util.rb
@@ -229,17 +229,17 @@ class RUtilTest < Test::Unit::TestCase
@@resources += [dataset1.uri, dataset2.uri]
files = []
#plot
- [true,false].each do |fast_embedding|
- next if fast_embedding==false and !@@rutil.package_installed?("smacof")
- random_file = "/tmp/feature_value_plot_random_fast#{fast_embedding}.svg"
- stratified_file = "/tmp/feature_value_plot_stratified_fast#{fast_embedding}.svg"
+ #[true,false].each do |fast_embedding|
+ # next if fast_embedding==false and !@@rutil.package_installed?("smacof")
+ random_file = "/tmp/feature_value_plot_random.svg" #_fast#{fast_embedding}.svg"
+ stratified_file = "/tmp/feature_value_plot_stratified.svg" #_fast#{fast_embedding}.svg"
pre_files [random_file, stratified_file]
@@rutil.feature_value_plot([random_file], dataset1.uri, dataset2.uri,
- "first five", "rest", nil, fast_embedding, @@subjectid)
+ "first five", "rest", nil, @@subjectid)
@@rutil.feature_value_plot([stratified_file], split[:split1].uri, split[:split2].uri,
- "five percent stratified", "rest", nil, fast_embedding, @@subjectid)
+ "five percent stratified", "rest", nil, @@subjectid)
files += [random_file, stratified_file]
- end
+ #end
#cleanup
post_files files
end