From: Dennis Schafroth Date: Mon, 17 May 2010 12:14:47 +0000 (+0200) Subject: Script to combine the stats of two runs X-Git-Tag: v1.4.1~6^2~8 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=16a3691d935984ed491d6f163ae06f471e5916d3;p=pazpar2-moved-to-github.git Script to combine the stats of two runs --- diff --git a/perf/bash/plot_combine_runs.sh b/perf/bash/plot_combine_runs.sh new file mode 100644 index 0000000..e2a6665 --- /dev/null +++ b/perf/bash/plot_combine_runs.sh @@ -0,0 +1,7 @@ +echo set terminal pdf +echo set output \"combined_init.pdf\" +echo "plot '../run_20100511_150215/range.stat' using 1:2 title 'init(marcxml)', '../run_20100511_152140/range.stat' using 1:2 title 'init(turbomarc)' " +echo set output \"combined_search.pdf\" +echo "plot '../run_20100511_150215/range.stat' using 1:3 title 'search(marcxml)', '../run_20100511_152140/range.stat' using 1:3 title 'search(turbomarc)' " +echo set output \"combined_show.pdf\" +echo "plot '../run_20100511_150215/range.stat' using 1:4 title 'show(marcxml)', '../run_20100511_152140/range.stat' using 1:4 title 'show(turbomarc)' "