charts
[nestedvm.git] / doc / charts / chart2.gnuplot
1 # don't touch this
2 set terminal postscript landscape color "Helvetica" 19 
3 set output 'unfilled.eps'
4
5 set yrange [0:60]
6 set xrange [1:4.2]
7 set data style boxes
8 set boxwidth 0.4
9 set xtics ("512" 1.8, "128" 3.4)
10 set xlabel "Max Instructions Per Method"
11 set ylabel "Seconds"
12 set title "JIT Doensn't Handle Largs Methods Well"
13 set grid
14
15 plot \
16   'chart2.dat' using ($1-0.8):($2) title "libjpeg",      \
17   'chart2.dat' using ($1-0.4):($3) title "libfreetype",    \
18   'chart2.dat' using     ($1):($4) title "libmspack"
19