X-Git-Url: http://git.megacz.com/?p=nestedvm.git;a=blobdiff_plain;f=doc%2Fcharts%2Fchart3.gnuplot;fp=doc%2Fcharts%2Fchart3.gnuplot;h=273b118d1f1eed5c683fd9ccfbb87eb6a48d47dd;hp=0000000000000000000000000000000000000000;hb=b97d88fcab609b6c875d9fbdc75e81d31bbb769e;hpb=237f5630a4a558e31eff54e7f59d1873ac6c1534 diff --git a/doc/charts/chart3.gnuplot b/doc/charts/chart3.gnuplot new file mode 100644 index 0000000..273b118 --- /dev/null +++ b/doc/charts/chart3.gnuplot @@ -0,0 +1,17 @@ +# don't touch this +set terminal postscript landscape color "Helvetica" 19 +set output 'unfilled.eps' + +set yrange [0:5.0] +set xrange [1:5.8] +set data style boxes +set boxwidth 0.4 +set xtics ("Libjpeg" 1.8, "libfreetype" 3.4, "libmspack" 5.0) +set xlabel "Application" +set ylabel "Seconds" +set title "JavaSource vs Classfile" +set grid + +plot \ + 'chart3.dat' using ($1-0.8):($2) title "JavaSource", \ + 'chart3.dat' using ($1-0.4):($3) title "ClassFile"