Skip to content

Instantly share code, notes, and snippets.

@dabd
Created March 23, 2012 00:03
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 dabd/2165649 to your computer and use it in GitHub Desktop.
Save dabd/2165649 to your computer and use it in GitHub Desktop.
# cbet freq vs pre flop fold freq
set autoscale
unset log
unset label
#set size square
set xtics 0,0.1,0.7
set ytics 0,0.1,1
set title "cbet freq vs BB fold freq"
set grid
#show grid
set xlabel "cbet freq"
set ylabel "BB fold freq"
set key top left
#set key 0,0
#unset key
set xr [0:0.7]
set yr [0:1]
set style function points
f(x) = (1.5-4*x+4*k-4*x*k)/(3-4*x+4*k-4*x*k)
plot title="k=0.4", k=0.4, f(x), title="k=0.5" k=0.5, f(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment