?prevdifflink? - Blame
set terminal png transparent
set autoscale # scale axes automatically
unset log # remove any log-scaling
unset label # remove any previous labels
set xtic auto # set xtics automatically
set ytic auto # set ytics automatically
set output 'Q4-prof.png'
set title "parsing and xpto core times for //movie[year,box_office/date]/director"
set xlabel "XML input file size (Kb)"
set ylabel "Execution time (seg)"
set key left box
plot "Q4-prof.dat" using 1:2 title 'Parsing' with linespoints,\
"Q4-prof.dat" using 1:3 title 'Core' with linespoints,\
"Q4-prof.dat" using 1:4 title 'Saxon Parsing' with linespoints,\
"Q4-prof.dat" using 1:5 title 'Saxon Core Compiled' with linespoints
|