source: doc/theses/mike_brooks_MMath/plots/list-zoomin-abs-viii-java.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: 942 bytes
Line 
1set terminal pdfcairo color enhanced size 3.1in,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-zoomin-abs-viii-java.pdf"
11
12set grid
13unset key
14set logscale x 2
15#set logscale y
16set yrange [0:7];
17set ytics (1,2,3,4,5,6,7)
18#set format y ""
19set xrange [0.75:180];
20set xlabel "List length (item count)" offset 2,0
21# set ylabel "Duration (ns)" offset -1.0,0
22set errorbars 2.0
23set pointintervalbox 0
24
25plot INDIR."/plot-list-zoomin-abs-viii-java.dat" \
26 i 0 using ($1 * 0.98):8:4:5 title columnheader(1) with yerrorbars lt rgb "blue" pt 6 ps 0.85 lw 1, \
27 '' i 3 using ($1 * 0.94):8:4:5 title columnheader(1) with yerrorbars lt rgb "dark-orange" pt 8 ps 0.75 lw 1, \
28 '' i 2 using ($1 * 1.02):8:4:5 title columnheader(1) with yerrorbars lt rgb "magenta" pt 10 ps 0.85 lw 1
Note: See TracBrowser for help on using the repository browser.