Created
December 6, 2016 16:15
-
-
Save Su-Shee/858e8bff2383f4f4f6ce70efecd12e69 to your computer and use it in GitHub Desktop.
GnuPlot Coffee Time Plot
This file contains 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
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