view log/gnuplot/write_makegraph_jungle.sh @ 1:0a198ff75b2c

Added log and images
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 14 Jan 2014 17:14:01 +0900
parents
children
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set terminal postscript eps
set output 'write_jungle_cassandra.eps'
set title 'cassandra and jungle write benchmark'
set xlabel 'nuber of nodes'
set ylabel 'avarage time(sec)'
plot 'write_jungle_1node.dat' title "Jungle 1 node" lt rgb "dark-green" with linespoints, 'write_jungle_2node_2access.dat' title 'Jungle 2 node' lt rgb "dark-blue" with linespoints,'write_cassandra.dat' title "Cassandra 1 node" lt rgb "red" with linespoints, 'write_cassandra_2node_2access_one.dat' title "Cassandra 2 node (CLevel ONE)" lt rgb "dark-red" with linespoints
EOF