view paper/gnuplot/write_makegraph.sh @ 62:2cb5ac9282b0

writed description of ods.put
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Sat, 01 Feb 2014 11:44:34 +0900
parents 618adf0a9b2b
children 30c746568ef6
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 "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