view log/gnuplot/write_distribution_env.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_env.eps'
set title 'write benchmark (Jungle only)'
set xlabel 'nuber of nodes'
set ylabel 'avarage time(sec)'
plot 'write_jungle_2node_1access.dat' title 'Jungle 2 node' lt rgb "blue" with linespoints, 'persistent.dat' title 'Persistent version' lt rgb "dark-yellow" with linespoints, 'write_jungle_1node.dat' title 'Single node' lt rgb "dark-green" with linespoints
EOF