Mercurial > hg > Papers > 2014 > nobuyasu-master
annotate paper/gnuplot/write_makegraph.sh @ 84:30c746568ef6
Change graph colors
author | Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Feb 2014 12:44:10 +0900 |
parents | 618adf0a9b2b |
children |
rev | line source |
---|---|
40
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 #!/bin/sh |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
2 gnuplot << EOF |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
3 set terminal postscript eps |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
4 set output 'write_bench.eps' |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 set title 'write benchmark(1,000,000 Requests)' |
44
618adf0a9b2b
Added some figures
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
40
diff
changeset
|
6 set xlabel 'number of nodes' |
40
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
7 set ylabel 'time(sec)' |
84
30c746568ef6
Change graph colors
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents:
44
diff
changeset
|
8 plot 'write_jungle.dat' title 'Jungle' lt rgb "navy" with linespoints, 'write_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "light-red" with linespoints, 'write_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "dark-red" with linespoints |
40
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
9 EOF |