Created
May 26, 2014 20:55
-
-
Save itiut/fda68607431676f9d34b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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