| 1 | set terminal pdf color enhanced size 6.5in,3.5in font "Times,17"
|
|---|
| 2 | #set terminal postscript portrait enhanced size 7.5, 10. color solid 9.5;
|
|---|
| 3 | #set terminal wxt size 950,1250
|
|---|
| 4 |
|
|---|
| 5 | INDIR="build"
|
|---|
| 6 | OUTDIR="build"
|
|---|
| 7 |
|
|---|
| 8 | set macros
|
|---|
| 9 | set output OUTDIR."/plot-string-peq-cppemu.pdf"
|
|---|
| 10 | #set pointsize 2.0
|
|---|
| 11 | set grid
|
|---|
| 12 | set key top left
|
|---|
| 13 | set xrange [1:500]
|
|---|
| 14 | set xtics (1,2,5,10,20,50,100,200,500)
|
|---|
| 15 | set logscale x
|
|---|
| 16 | #set logscale y
|
|---|
| 17 | set yrange [0:115]
|
|---|
| 18 | set xlabel "String Length being appended (mean, geo. dist.), log scale" offset 2,0
|
|---|
| 19 | set ylabel "Time per append (ns, mean)"
|
|---|
| 20 | set linetype 2 dashtype 2
|
|---|
| 21 | set linetype 4 dashtype 2
|
|---|
| 22 | plot INDIR."/plot-string-peq-cppemu.dat" \
|
|---|
| 23 | i 0 using 1:2 title columnheader(1) with points lt rgb "red" pt 2 ps 1, \
|
|---|
| 24 | '' i 0 using 1:2 notitle smooth sbezier lt rgb "red" dashtype 1, \
|
|---|
| 25 | '' i 1 using 1:2 title columnheader(1) with points lt rgb "red" pt 1 ps 1, \
|
|---|
| 26 | '' i 1 using 1:2 notitle smooth sbezier lt rgb "red" dashtype 4, \
|
|---|
| 27 | '' i 2 using 1:2 title columnheader(1) with points lt rgb "blue" pt 6 ps 1, \
|
|---|
| 28 | '' i 2 using 1:2 notitle smooth sbezier lt rgb "blue" dashtype 1, \
|
|---|
| 29 | '' i 3 using 1:2 title columnheader(1) with points lt rgb "blue" pt 8 ps 1, \
|
|---|
| 30 | '' i 3 using 1:2 notitle smooth sbezier lt rgb "blue" dashtype 4 \
|
|---|