| 1 | set terminal pdf color enhanced size 6.0in,3.0in 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 | DIR="pictures"
 | 
|---|
| 6 | 
 | 
|---|
| 7 | set macros
 | 
|---|
| 8 | set output "build/string-graph-pta-sharing.pdf"
 | 
|---|
| 9 | #set pointsize 2.0
 | 
|---|
| 10 | set grid
 | 
|---|
| 11 | set key top left
 | 
|---|
| 12 | set xtics (1,2,5,10,20,50,100,200,500)
 | 
|---|
| 13 | set logscale x
 | 
|---|
| 14 | set yrange [8:4096]
 | 
|---|
| 15 | set logscale y 2
 | 
|---|
| 16 | set xlabel "String Length being appended (mean, geo. dist.), log scale" offset 2,0
 | 
|---|
| 17 | set ylabel "Time per append (ns, mean), log_{2} scale"
 | 
|---|
| 18 | set linetype 2 dashtype 2
 | 
|---|
| 19 | set linetype 6 dashtype 2
 | 
|---|
| 20 | #show colornames
 | 
|---|
| 21 | plot DIR."/string-graph-pta-sharing.dat" \
 | 
|---|
| 22 |            i 0 using 1:2 title columnheader(1) with linespoints lt rgb "red"    pt  2  ps 1 lw 1, \
 | 
|---|
| 23 |         '' i 1 using 1:2 title columnheader(1) with linespoints lt rgb "red"    pt  3  ps 1 lw 1, \
 | 
|---|
| 24 |         '' i 2 using 1:2 title columnheader(1) with linespoints lt rgb "dark-green" pt  4  ps 1 lw 1, \
 | 
|---|
| 25 |         '' i 3 using 1:2 title columnheader(1) with linespoints lt rgb "blue"   pt  6  ps 1 lw 1, \
 | 
|---|
| 26 |         '' i 4  using 1:2 title columnheader(1) with linespoints lt rgb "dark-green" pt  12  ps 1 lw 1, \
 | 
|---|
| 27 |         '' i 5  using 1:2 title columnheader(1) with linespoints lt rgb "blue"  pt  8  ps 1 lw 1
 | 
|---|