From b57b0de6e363a4a13441dc2eabc607123f173a13 Mon Sep 17 00:00:00 2001 From: David Kaufmann Date: Fri, 4 Nov 2011 23:17:11 +0100 Subject: [PATCH] plot file --- openmp/stat/plot.gnu | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/openmp/stat/plot.gnu b/openmp/stat/plot.gnu index 79f313b..5ace457 100644 --- a/openmp/stat/plot.gnu +++ b/openmp/stat/plot.gnu @@ -1,14 +1,13 @@ -set terminal png font arial 8 size 600,300 +set terminal png font arial 8 size #600,300 set output 'merge.png' set grid -set ytics border in scale 1,0.5 mirror norotate offset character 0, 0, 0 -set ytics (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11) set title "Merging times" set xlabel "value of parameter p" set ylabel "seconds per sort run" -set xrange [ 0.0000 : 25.000 ] # Anzahl an Messungen -set yrange [ 0.0000 : 12.000 ] # Sekunden pro sort +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 0:1 notitle with points, \ - 'merge.dat' using 0:1 title "interpolate" with lines, \ - 'merge.dat' using 0:1 smooth csplines title "cspline" with lines +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 -- 2.43.0