From: P2P-Next User Date: Mon, 24 Jan 2011 14:57:20 +0000 (+0200) Subject: Utils: add "overall" data processing scripts X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=b006fed499206c1568d429cda26d0bad7a1b59a5;p=p2p-testing-infrastructure.git Utils: add "overall" data processing scripts --- diff --git a/Utils/data-processing/all_get_scenario_down_time b/Utils/data-processing/all_get_scenario_down_time new file mode 100755 index 0000000..11894e9 --- /dev/null +++ b/Utils/data-processing/all_get_scenario_down_time @@ -0,0 +1,7 @@ +#!/bin/bash + +base=/home/p2p/george/P2P-Testing-Infrastructure/Results/bt-unified-tracker/ + +while read scenario size; do + ./get_scenario_down_time "$base" "$scenario" > "$scenario".txt +done < scenarios.lst diff --git a/Utils/data-processing/all_parse_data b/Utils/data-processing/all_parse_data new file mode 100755 index 0000000..29b7f79 --- /dev/null +++ b/Utils/data-processing/all_parse_data @@ -0,0 +1,7 @@ +#!/bin/bash + +base=/home/p2p/george/P2P-Testing-Infrastructure/Results/bt-unified-tracker/ + +while read scenario size; do + Rscript down_time_mean_sd.R --args "$scenario".txt "$size" > r-"$scenario".txt +done < scenarios.lst