ntlmauth.jar
[nestedvm.git] / doc / charts / chart9.gnuplot
1 # don't touch this
2 set terminal postscript landscape color "Helvetica" 19 
3 set output 'unfilled.eps'
4
5 set yrange [0:500]
6 set xrange [1:9.0]
7 set data style boxes
8 set boxwidth 0.4
9 set xtics ("DJpeg" 2.0, "Freetype" 4.0, "Boehm-GC" 6.0, "LibMSPack" 8.0)
10 set xlabel "Application"
11 set ylabel "Size (kilobytes)"
12 set title "Size of MIPS Binary vs Java Bytecode"
13 set grid
14 #set label "59"  at 2.15, 69 
15 #set label "97"  at 2.55, 107
16 #set label "159" at 2.95, 169
17 #set label "256" at 3.35, 266
18 plot \
19   'chart9.dat' using ($1-1.2):($2) title "Class",      \
20   'chart9.dat' using ($1-0.8):($3) title "MIPS Binary",    \
21   'chart9.dat' using ($1-0.4):($4) title "Compressed Class", \
22   'chart9.dat' using     ($1):($5) title "Compressed MIPS"
23