## 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 enhanced "Helvetica" 54
set output "$1.eps"
set ylabel "x-axis values, sorted"
set xlabel "Ranking via percent ties"
 set xtics 2
 set ytics 20
#set xrange [14:16]
set yrange [0:110]
set key box
set key bottom right
set pointsize 3
plot "$1.csv" using 1:2 title "LOO vs 3Way" with linespoints  pt 5 linewidth 7,\
"$1.csv" using 1:3 title "LOO vs 10Way" with linespoints  pt 7  linewidth 7,\
"$1.csv" using 1:4 title "3Way vs 10Way" with linespoints  pt 9  linewidth 7
EOF
