# 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 key box
set key top right
set yrange [0:11]
set xrange [0:11]
set pointsize 5
plot "$1.csv" using 1:2 title "3 Way" with points pointtype 7,\
"$1.csv" using 5:6 title "10Way" with points pointtype 5,\
"$1.csv" using 3:4 title "LOO" with points pointtype 9
EOF
epstopdf "$1.eps"
