Skip to content

Instantly share code, notes, and snippets.

@itiut
Created May 26, 2014 20:55
Show Gist options
  • Save itiut/fda68607431676f9d34b to your computer and use it in GitHub Desktop.
Save itiut/fda68607431676f9d34b to your computer and use it in GitHub Desktop.
set xrange [0:23];
set xtics 1, 1, 22;
set mytics 2.5;
unset key;
set xlabel 'Queries';
set ylabel 'Execution Time [sec]';
set boxwidth 0.5;
set style fill solid 0.5;
set terminal svg dynamic;
set output 'execution_time.svg';
plot 'execution_time.dat' u 1:2 w boxes, '' u 1:($2+1):2 w labels;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment