source: doc/theses/mike_brooks_MMath/plots/list-zoomout-shuf-swift.gp

Last change on this file was 75ba2fa6, checked in by Peter A. Buhr <pabuhr@…>, 6 days ago

proofreading list chapter

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[75ba2fa6]1set terminal pdfcairo color enhanced size 3.625in,2.35in font "Times,17"
[8eb85de]2
3set size 1.0, 1.0 # scale of plot area inside terminal
4set origin 0.0, 0.0 # bottom-left corner
[16a843b]5
6INDIR="build"
7OUTDIR="build"
8
9set macros
[8eb85de]10set output OUTDIR."/plot-list-zoomout-shuf-swift.pdf"
11
12set lmargin 10
[16a843b]13
14set grid
[8eb85de]15unset key
[16a843b]16set logscale x
[8eb85de]17set xtics ("1" 1, "10" 10, "100" 100, \
18 "10^3" 1e3, "10^4" 1e4, "10^5" 1e5, \
19 "10^6" 1e6, "10^7" 1e7, "10^8" 1e8, "10^9" 1e9)
20set mxtics 9
[6c58850]21set logscale y
[5d300ba]22#set yrange [1:1000];
[16a843b]23set xlabel "List length (item count)" offset 2,0
[75ba2fa6]24set ylabel "Duration (ns), log scale" offset 1,0
[16a843b]25set linetype 3 dashtype 2
26set linetype 4 dashtype 2
27
[8eb85de]28plot INDIR."/plot-list-zoomout-shuf-swift.dat" \
[bb5b866]29 i 1 using 1:2 title "STL" with points lt rgb "forest-green" pt 3 ps 1 lw 1, \
[16a843b]30 '' i 0 using 1:2 title "intrusives" with points lt rgb "black" pt 1 ps 1 lw 1, \
[bb5b866]31 '' i 2 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \
[16a843b]32 '' i 3 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \
33 '' i 4 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1
Note: See TracBrowser for help on using the repository browser.