more fixups
[nestedvm.git] / doc / charts / chart4.gnuplot
1 # don't touch this
2 set terminal postscript landscape color "Helvetica" 19 
3 set output 'unfilled.eps'
4
5 set yrange [0:5.5]
6 set xrange [1:5.8]
7 set data style boxes
8 set boxwidth 0.4
9 set xtics ("libjpeg" 1.8, "libfreetype" 3.4, "libmspack"  5.0)
10 set xlabel "Application"
11 set ylabel "Seconds"
12 set title "Fields vs Local Variables"
13 set grid
14 plot \
15   'chart4.dat' using ($1-0.8):($2) title "Fields Only",      \
16   'chart4.dat' using ($1-0.4):($3) title "Some Local Vars", \
17   'chart4.dat' using ($1):($4) title "All Local Vars"