# Gnuplot script file for plotting data set title "FlatSql1 vs. FlatSQL2" set xlabel "Nbr. of Lines" set ylabel "Time (sec)" set terminal postscript eps color # Normal-Normal set output 'plot-flatsql1-flatsql2.eps' set xr [10:10000000] set yr [0.01:10000] set logscale x set logscale y plot "select-flatsql1.plot" using 1:3 title 'Select - FlatSQL 1' with linespoints replot "select-flatsql2.plot" using 1:3 title 'Select - FlatSQL 2' with linespoints replot "join-flatsql1.plot" using 1:3 title 'Join - FlatSQL 1' with linespoints replot "join-flatsql2.plot" using 1:3 title 'Join - FlatSQL 2' with linespoints