added gnuplots
[nestedvm.git] / doc / charts / chart1.gnuplot
1 # don't touch this
2 set terminal postscript landscape color "Helvetica" 19 
3 set output 'unfilled.eps'
4
5 set yrange [0:300]
6 set xrange [1.8:4.5]
7 set data style boxes
8 set boxwidth 0.4
9 set xtics (" " 3)
10 set xlabel "X Axis Label"
11 set ylabel "Y Axis Label"
12 set grid
13 set label "59"  at 2.15, 69 
14 set label "97"  at 2.55, 107
15 set label "159" at 2.95, 169
16 set label "256" at 3.35, 266
17 plot \
18   'chart1.dat' using ($1-0.8):($2) title "x86",      \
19   'chart1.dat' using ($1-0.4):($3) title "Sparc",    \
20   'chart1.dat' using     ($1):($4) title "HPL-PD",   \
21   'chart1.dat' using ($1+0.4):($5) title "Canonical"
22
23