source: doc/theses/mike_brooks_MMath/plots/string-pbv.gp@ 7592f42

Last change on this file since 7592f42 was 2410424, checked in by Michael Brooks <mlbrooks@…>, 4 months ago

Pushing work in progress on data for string plots.

All in-thesis plots source from baselined result data, with no manual massaging. Removing older placeholder graph images and temp data.

Allocation plot, especially the last attribution stacked bar, is showing untrustrworthy data.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1set terminal pdf color enhanced size 6.0in,3.0in font "Times,17"
2#set terminal postscript portrait enhanced size 7.5, 10. color solid 9.5;
3#set terminal wxt size 950,1250
4
5INDIR="build"
6OUTDIR="build"
7
8set macros
9set output OUTDIR."/plot-string-pbv.pdf"
10
11set multiplot layout 1, 2 ;
12
13
14#set pointsize 2.0
15set grid
16set key bottom right
17#set key at screen 0.45, screen 0.8
18set xtics (1,2,5,10,20,50,100,200,500)
19set logscale x
20set logscale y 2
21set xlabel "String length passed, varying (mean)"
22set ylabel "Time per pass (ns, mean), log_{2} scale"
23set yrange [4:64]
24set linetype 3 dashtype 2
25set linetype 4 dashtype 2
26plot INDIR."/plot-string-pbv-varcorp.dat" \
27 i 0 using 1:2 title columnheader(1) with linespoints lt rgb "red" pt 3 ps 1 lw 1, \
28 '' i 1 using 1:2 title columnheader(1) with linespoints lt rgb "blue" pt 6 ps 1 lw 1
29
30set xlabel "String length passed, fixed"
31set ylabel
32plot INDIR."/plot-string-pbv-fixcorp.dat" \
33 i 0 using 1:2 title columnheader(1) with linespoints lt rgb "red" pt 3 ps 1 lw 1, \
34 '' i 1 using 1:2 title columnheader(1) with linespoints lt rgb "blue" pt 6 ps 1 lw 1
35
36unset multiplot
Note: See TracBrowser for help on using the repository browser.