| 1 | set terminal pdfcairo color enhanced size 3.0in,2.0in font "Times,17"
|
|---|
| 2 |
|
|---|
| 3 | set size 1.0, 1.0 # scale of plot area inside terminal
|
|---|
| 4 | set origin 0.0, 0.0 # bottom-left corner
|
|---|
| 5 |
|
|---|
| 6 | INDIR="build"
|
|---|
| 7 | OUTDIR="build"
|
|---|
| 8 |
|
|---|
| 9 | set macros
|
|---|
| 10 | set output OUTDIR."/plot-list-zoomout-noshuf-java.pdf"
|
|---|
| 11 |
|
|---|
| 12 | set grid
|
|---|
| 13 | unset key
|
|---|
| 14 | set logscale x
|
|---|
| 15 | #set xtics ("1" 1, "10" 10, "100" 100, \
|
|---|
| 16 | # "10^3" 1e3, "10^4" 1e4, "10^5" 1e5, \
|
|---|
| 17 | # "10^6" 1e6, "10^7" 1e7, "10^8" 1e8, "10^9" 1e9)
|
|---|
| 18 | set logscale y
|
|---|
| 19 | set yrange [1:100];
|
|---|
| 20 | #set xlabel "List length (item count)" offset 2,0
|
|---|
| 21 | unset xlabel
|
|---|
| 22 | unset mxtics
|
|---|
| 23 | set format x ""
|
|---|
| 24 | #set ylabel "Duration (ns)"
|
|---|
| 25 | unset ylabel
|
|---|
| 26 | set format y ""
|
|---|
| 27 | set linetype 3 dashtype 2
|
|---|
| 28 | set linetype 4 dashtype 2
|
|---|
| 29 |
|
|---|
| 30 | plot INDIR."/plot-list-zoomout-noshuf-java.dat" \
|
|---|
| 31 | i 1 using 1:2 title "STL" with points lt rgb "forest-green" pt 3 ps 1 lw 1, \
|
|---|
| 32 | '' i 0 using 1:2 title "intrusives" with points lt rgb "black" pt 1 ps 1 lw 1, \
|
|---|
| 33 | '' i 2 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \
|
|---|
| 34 | '' i 3 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \
|
|---|
| 35 | '' i 4 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1
|
|---|