view paper/gnuplot/makegraph_distributed_read.sh @ 83:9c48096c2348

Change graph format to svg from eps
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Mon, 03 Feb 2014 12:29:34 +0900
parents 7b595f4b341e
children 30c746568ef6
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set terminal svg
set output 'distributed_read_bench.svg'
set title 'distributed read benchmark (Requests : clients * 50,000)'
set xrange[8:32]
set xlabel 'number of nodes and clients'
set ylabel 'time(sec)'
plot 'read_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'read_cassandra_quorum_errorbar.dat' using 1:2:3 title "Cassandra Consistency Level Quorum" lt rgb "red" with errorbars
EOF