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

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

proofreading list chapter

  • Property mode set to 100644
File size: 1.1 KB
Line 
1set terminal pdfcairo color enhanced size 3.625in,2.0in font "Times,17"
2
3set size 1.0, 1.0 # scale of plot area inside terminal
4set origin 0.0, 0.0 # bottom-left corner
5
6INDIR="build"
7OUTDIR="build"
8
9set macros
10set output OUTDIR."/plot-list-zoomout-noshuf-swift.pdf"
11
12set lmargin 10
13
14set grid
15unset key
16set logscale x
17#set 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 format x ""
21unset mxtics
22set logscale y
23set yrange [1:100];
24# set xlabel "List length (item count)" offset 2,0
25unset xlabel
26set ylabel "Duration (ns), log scale"
27set linetype 3 dashtype 2
28set linetype 4 dashtype 2
29
30plot INDIR."/plot-list-zoomout-noshuf-swift.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
Note: See TracBrowser for help on using the repository browser.