annotate paper/gnuplot/read_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
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 'read_bench.eps'
8ea1a684bfbe Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 set title 'read 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 'read_jungle.dat' title 'Jungle' lt rgb "navy" with linespoints, 'read_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "light-red" with linespoints, 'read_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "red" with linespoints
40
8ea1a684bfbe Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
9 EOF