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@…>, 4 days ago

proofreading list chapter

  • Property mode set to 100644
File size: 1.1 KB
Line 
1set terminal pdfcairo color enhanced size 3.625in,2.35in 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-shuf-swift.pdf"
11
12set lmargin 10
13
14set grid
15unset key
16set logscale x
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
21set logscale y
22#set yrange [1:1000];
23set xlabel "List length (item count)" offset 2,0
24set ylabel "Duration (ns), log scale" offset 1,0
25set linetype 3 dashtype 2
26set linetype 4 dashtype 2
27
28plot INDIR."/plot-list-zoomout-shuf-swift.dat" \
29 i 1 using 1:2 title "STL" with points lt rgb "forest-green" pt 3 ps 1 lw 1, \
30 '' i 0 using 1:2 title "intrusives" with points lt rgb "black" pt 1 ps 1 lw 1, \
31 '' i 2 using 1:2 notitle with points lt rgb "black" pt 1 ps 1 lw 1, \
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.