view Paper/gnuplot/makegraph.sh @ 37:fa37607c0c1c

added gnuplot
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 19 Jul 2013 14:06:45 +0900
parents ac82fd7e1ea1
children
line wrap: on
line source

#!/bin/sh
#plot 'hoge.csv' using '%lf,%lf'
#set xrange[0:45]
gnuplot << EOF
set terminal postscript eps
set output 'graph.eps'
set title 'title'
set xlabel 'nuber of nodes'
set ylabel 'avarage time'
plot 'test.dat' using 1:2 lt rgb "red" with linespoints, 'test2.dat' using 1:2  lt rgb "blue" with linespoints
EOF