Skip to content

Instantly share code, notes, and snippets.

@cvson
Created August 19, 2014 11:32
Show Gist options
  • Save cvson/81d0e9da295ed736805d to your computer and use it in GitHub Desktop.
Save cvson/81d0e9da295ed736805d to your computer and use it in GitHub Desktop.
#!/usr/local/bin/gnuplot
###################################
# #
# @visionlib.postach.io #
# #
###################################
set term post enh color
set output "draft_lottery.eps"
set xlabel "Draft Number"
set ylabel "Day of year"
set key right top title ''
set label 1 "\\@visionlib" at -.9,390 tc rgb "#B45F04"
plot "draft_lottery.txt" u 5:4 title "" pt 7 ps 1 linecolor rgb "#1F9839"
set output "draft_lottery_fit.eps"
set xlabel "Draft Number"
set ylabel "Day of year"
set key right top title ''
set label 1 "\\@visionlib" at -.9,390 tc rgb "#B45F04"
plot "draft_lottery.txt" u 5:4 title "" pt 7 ps 1 linecolor rgb "#1F9839", "" u 5:4:(1e-4) smooth acsplines title "" lw 6 linecolor rgb "#B45F04", "" u 5:4:(1e-15) smooth acsplines title "" lw 6 linecolor rgb "#424242"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment