1 set terminal png font arial 8 size #600,300
2 set output 'stats/prefix.png'
4 set title "Time required for each algorithm"
5 set xlabel "Size of array"
6 set ylabel "Time needed for calculation"
7 #set xrange [ 100000 : 100000000 ]
8 #set yrange [ 0.0000 : 0.75 ]
11 set datafile separator ";"
12 plot 'stats/prefix.datapar.dat' using 1:2 notitle with points, \
13 'stats/prefix.datapar.dat' using 1:2 title "datapar" with lines, \
14 'stats/prefix.hillis.dat' using 1:2 notitle with points, \
15 'stats/prefix.hillis.dat' using 1:2 title "hillis" with lines, \
16 'stats/prefix.seq.dat' using 1:2 notitle with points, \
17 'stats/prefix.seq.dat' using 1:2 title "seq" with lines, \
18 'stats/prefix.recurse.dat' using 1:2 notitle with points, \
19 'stats/prefix.recurse.dat' using 1:2 title "recurse" with lines