view paper/gnuplot/bldsv12/makegraph_bldsv12_read.sh @ 82:d24492455ead

Resize line width for 5 from 1 on bldsv12/distributed, read/write graphs
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Mon, 03 Feb 2014 12:20:38 +0900
parents 39c2180b5719
children 9c48096c2348
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set terminal postscript eps
set output 'bldsv12_read_bench.eps'
set title 'Single node read benchmark (Requests : clients * 20,000)'
set xrange[8:60]
set xlabel 'number of clients'
set ylabel 'time(sec)'
plot 'bldsv12_read_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "blue" lw 5 with errorbars, 'bldsv12_read_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "red" lw 5 with errorbars
EOF