Mercurial > hg > Papers > 2014 > nobuyasu-master
annotate paper/gnuplot/makegraph_distributed_write.sh @ 102:6f73e05d5024
Fixed chapter4.tex
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 15 Feb 2014 06:00:54 +0900 |
parents | 30c746568ef6 |
children |
rev | line source |
---|---|
45
cd3b8cf7a3a1
Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 #!/bin/sh |
cd3b8cf7a3a1
Added file for gnuplot
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:
49
diff
changeset
|
3 set terminal svg |
9c48096c2348
Change graph format to svg from eps
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents:
49
diff
changeset
|
4 set output 'distributed_write_bench.svg' |
45
cd3b8cf7a3a1
Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 set title 'write benchmark (Requests : clients * 50,000)' |
46
c63aaa629330
Added dat files
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
45
diff
changeset
|
6 set xrange[8:32] |
45
cd3b8cf7a3a1
Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
7 set xlabel 'number of nodes' |
cd3b8cf7a3a1
Added file for gnuplot
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 'write_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "navy" with errorbars, 'write_cassandra_quorum_errorbar.dat' using 1:2:3 title "Cassandra Consistency Level Quorum" lt rgb "light-red" with errorbars |
45
cd3b8cf7a3a1
Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
10 EOF |