view paper/gnuplot/makegraph_distributed_read.sh @ 45:cd3b8cf7a3a1

Added file for gnuplot
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 30 Jan 2014 20:22:22 +0900
parents
children c63aaa629330
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set terminal postscript eps
set output 'distributed_read_bench.eps'
set title 'distributed read benchmark (Requests : clients * 50,000)'
set xlabel 'number of nodes and clients'
set ylabel 'time(sec)'
plot 'distributed_read_jungle.dat' title 'Jungle' lt rgb "blue" with linespoints, 'distributed_read_cassandra_quorum.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints, 'distributed_read_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "dark-red" with linespoints
EOF