Created
March 23, 2012 00:03
-
-
Save dabd/2165649 to your computer and use it in GitHub Desktop.
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
# 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