view log/gnuplot/write_makegraph.sh @ 0:ff237e0f2e40

First commit
author Nobuyasu
date Sun, 12 Jan 2014 01:09:30 +0900
parents
children 0a198ff75b2c
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set terminal postscript eps
set output 'write_bench.eps'
set title 'write benchmark'
set xlabel 'nuber of nodes'
set ylabel 'avarage time(sec)'
plot 'write_jungle_2node_1access.dat' title 'Jungle 2 node 1 access' lt rgb "blue" with linespoints, 'write_jungle_1node.dat' title "Jungle single node" lt rgb "dark-green" with linespoints, 'write_jungle_2node_2access.dat' title 'Jungle 2 node 2 access' lt rgb "dark-blue" with linespoints, 'write_cassandra.dat' title "Cassandra single node" lt rgb "red" with linespoints, 'write_cassandra_2node_1access.dat' title "Cassandra 2 node single access(CLevel ALL)" lt rgb "dark-red" with linespoints, 'write_cassandra_2node_2access.dat' title "Cassandra 2 node 2 access(CLevel ALL)" lt rgb "purple" with linespoints,
EOF