set terminal png font arial 8 size #600,300 set output 'merge.png' set grid set title "Merging times" set xlabel "value of parameter p" set ylabel "seconds per sort run" set xrange [ 1.0000 : 100.000 ] # Anzahl an Messungen set yrange [ 0.0000 : 0.100 ] # Sekunden pro sort set xtics 50,50,250 set datafile separator "," plot 'merge.dat' using 1:2 notitle with points, \ 'merge.dat' using 1:2 title "interpolate" with lines, \ 'merge.dat' using 1:2 smooth csplines title "cspline" with lines