annotate paper/gnuplot/write_makegraph.sh @ 105:3678db9f1085

Modified poster
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 18 Feb 2014 01:09:38 +0900
parents 30c746568ef6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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