Skip to content

Instantly share code, notes, and snippets.

@timfel
Created June 3, 2015 13:47
Show Gist options
  • Save timfel/67abe2afdf9c86e7784c to your computer and use it in GitHub Desktop.
Save timfel/67abe2afdf9c86e7784c to your computer and use it in GitHub Desktop.
reset
fontsize = 12
set term pdf
set style fill solid 1.00 border 0
set style histogram errorbars gap 2 lw 1
set style data histogram
set xtics rotate by -45
set grid ytics
set xlabel "Benchmarks"
set ylabel "Relative execution time vs. reference implementation"
set yrange [0:*]
set datafile separator ";"
plot 'file.txt' using 2:3:xtic(1) ti "No Strategies" linecolor rgb "#FF0000", \
'' using 4:5 ti "Strategies" lt 1 lc rgb "#00FF00", \
'' using 6:7 ti "Cog" lt 1 lc rgb "#0000FF"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment