source: doc/theses/mike_brooks_MMath/plot-allocn.gp @ 048dde4

Last change on this file since 048dde4 was 048dde4, checked in by Michael Brooks <mlbrooks@…>, 2 days ago

Rough-in gnuplot for "allocn" string graph

  • Property mode set to 100644
File size: 973 bytes
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
5DIR="pictures"
6
7set macros
8set output "build/string-graph-allocn.pdf"
9#set pointsize 2.0
10set grid
11set key top left
12#set xtics (1,2,5,10,20,50,100,200,500)
13set logscale x 2
14set logscale y 2
15set xlabel "Duration (ns)" offset 2,0
16set ylabel "Space Used (byte)"
17set linetype 3 dashtype 2
18set linetype 4 dashtype 2
19plot DIR."/string-graph-allocn.dat" \
20           i 0 using 1:2 title columnheader(1) with linespoints lt rgb "blue"   pt  2  ps 1 lw 1, \
21        '' i 1 using 1:2 title columnheader(1) with linespoints lt rgb "red"    pt  3  ps 1 lw 1, \
22        '' i 2 using 1:2 title columnheader(1) with linespoints lt rgb "gray"   pt  6  ps 1 lw 1, \
23        '' i 3 using 1:2 title columnheader(1) with linespoints lt rgb "yellow" pt  8  ps 1 lw 1, \
24        '' i 4 using 1:2 title columnheader(1) with linespoints lt rgb "cyan"   pt  8  ps 1 lw 1
Note: See TracBrowser for help on using the repository browser.