# example call to this function: ./biasVariancePlotter fileName
# note that fileName should be a csv file containing the bias-variance values
gnuplot << EOF
set datafile separator "," 
set size 1.75,1.75
set terminal postscript eps color "Helvetica" 54
set pointsize 2.5
set output "$1.eps"
set ylabel "Variance Values"
set xlabel "Bias Values"
 set xtics 2
 set ytics .05
set pointsize 4
#set xrange [14:16]
set yrange [14.95:15.19]
set key box
# set title "$1 Logged Bias/Variance Values"
set key top left
plot "$1.csv" using 1:2 title "3-Way" with points pointtype 7,\
 "$1.csv" using 5:6 title "10-Way" with points pointtype 5,\
"$1.csv" using 3:4 title "LOO" with points pointtype 9
EOF
epstopdf ""
