Mercurial > hg > Papers > 2014 > nobuyasu-master
view paper/gnuplot/read_makegraph.sh @ 85:07aec327a7bc
Added slides.htlm
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Feb 2014 13:06:41 +0900 |
parents | 618adf0a9b2b |
children | 30c746568ef6 |
line wrap: on
line source
#!/bin/sh gnuplot << EOF set terminal postscript eps set output 'read_bench.eps' set title 'read benchmark(1,000,000 Requests)' set xlabel 'number of nodes' set ylabel 'time(sec)' plot 'read_jungle.dat' title 'Jungle' lt rgb "blue" with linespoints, 'read_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints, 'read_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "red" with linespoints EOF