Mercurial > hg > Papers > 2014 > nobuyasu-master
annotate paper/gnuplot/bldsv12/makegraph_bldsv12_write.sh @ 112:df2c2bca89a5
Modofied master.graffle
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 20 Feb 2014 17:29:13 +0900 |
parents | f099e7314921 |
children |
rev | line source |
---|---|
51
3c185e874021
Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 #!/bin/sh |
3c185e874021
Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
2 gnuplot << EOF |
83
9c48096c2348
Change graph format to svg from eps
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents:
82
diff
changeset
|
3 set terminal svg |
9c48096c2348
Change graph format to svg from eps
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents:
82
diff
changeset
|
4 set output 'bldsv12_write_bench.svg' |
51
3c185e874021
Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 set title 'Single node write benchmark (Requests : clients * 20,000)' |
57 | 6 set xrange[8:60] |
51
3c185e874021
Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
7 set xlabel 'number of clients' |
3c185e874021
Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
8 set ylabel 'time(sec)' |
84
30c746568ef6
Change graph colors
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents:
83
diff
changeset
|
9 plot 'bldsv12_write_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "navy" lw 5 with errorbars, 'bldsv12_write_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "light-red" lw 5 with errorbars |
51
3c185e874021
Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
10 EOF |