Skip to content

Instantly share code, notes, and snippets.

@Su-Shee
Created December 6, 2016 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Su-Shee/858e8bff2383f4f4f6ce70efecd12e69 to your computer and use it in GitHub Desktop.
Save Su-Shee/858e8bff2383f4f4f6ce70efecd12e69 to your computer and use it in GitHub Desktop.
GnuPlot Coffee Time Plot
reset
unset key
set terminal pngcairo size 900,600 enhanced font "Verdana, 10"
set output "coffee.png"
unset title
set format x ''
set grid ytics lt 0 lw 2 lc rgb "#bbaa00"
set title "When is Coffee Time?"
set ylabel "Time"
set ydata time
set timefmt "%H:%M"
set yrange ["07:00":"23:00"] reverse
set key left top
plot "coffee.time" using 1 with points pt 5 ps 2 lc rgb '#a1421a' title 'coffee'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment