set output "combined_2.eps"
set term postscript eps enhanced color
set size 0.5,0.5
set ylabel "weighted 1-vs-all accuracy"
set title "Comparing reduction accuracies"
set key bottom right box
set xlabel "1-vs-all accuracy"
plot [0.2:1] [0.2:1] x title "equality", "smo_data" using (1-$1):(1-$2) title "SMO" with points pt 5, "j48_data" using (1-$1):(1-$2) title "J48" with points pt 7, "nb_data" using (1-$1):(1-$2) title "Naive B." with points pt 9,"lr_data" using (1-$1):(1-$2) title "Logistic" with points pt 10
