Mercurial > hg > Papers > 2014 > nobuyasu-master
view paper/gnuplot/write_makegraph.sh @ 116:d45899154815 default tip
Fixed
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 06 Mar 2014 00:48:26 +0900 |
parents | 30c746568ef6 |
children |
line wrap: on
line source
#!/bin/sh gnuplot << EOF set terminal postscript eps set output 'write_bench.eps' set title 'write benchmark(1,000,000 Requests)' set xlabel 'number of nodes' set ylabel 'time(sec)' plot 'write_jungle.dat' title 'Jungle' lt rgb "navy" with linespoints, 'write_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "light-red" with linespoints, 'write_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "dark-red" with linespoints EOF