Mercurial > hg > Papers > 2014 > nobuyasu-master
diff paper/gnuplot/write_makegraph.sh @ 40:8ea1a684bfbe
Added benchmark dat file
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 29 Jan 2014 03:14:45 +0900 |
parents | |
children | 618adf0a9b2b |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/write_makegraph.sh Wed Jan 29 03:14:45 2014 +0900 @@ -0,0 +1,9 @@ +#!/bin/sh +gnuplot << EOF +set terminal postscript eps +set output 'write_bench.eps' +set title 'write benchmark(1,000,000 Requests)' +set xlabel 'nuber of nodes' +set ylabel 'time(sec)' +plot 'write_jungle.dat' title 'Jungle' lt rgb "blue" with linespoints, 'write_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints, 'write_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "dark-red" with linespoints +EOF