Mercurial > hg > Papers > 2014 > nobuyasu-master
view paper/gnuplot/bldsv12/makegraph_bldsv12_read.sh @ 95:7e49ee4e38c9
Added graffle
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 13 Feb 2014 20:46:12 +0900 |
parents | f257e8ebd79c |
children | f099e7314921 |
line wrap: on
line source
#!/bin/sh gnuplot << EOF set terminal svg set output 'bldsv12_read_bench.svg' 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 "navy" lw 5 with errorbars, 'bldsv12_read_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "light-red" lw 5 with errorbars EOF