#!/usr/bin/env gnuplot -persist #set term x11 enhanced color set terminal postscript eps enhanced color set output "test-learn.ps" set yrange [0:75] set xrange [100:5000] set ylabel "Kwaliteit in procenten" set xlabel "Aangeboden trainingsets" plot "test-learn-0.1.dat" using 1:2 title "0.1" with lines,\ "test-learn-0.3.dat" using 1:2 title "0.3" with lines,\ "test-learn-0.5.dat" using 1:2 title "0.5" with lines,\ "test-learn-0.7.dat" using 1:2 title "0.7" with lines,\ "test-learn-1.0.dat" using 1:2 title "1.0" with lines,\ "test-learn-1.5.dat" using 1:2 title "1.5" with lines,\ "test-learn-2.0.dat" using 1:2 title "2.0" with lines,\ "test-learn-5.0.dat" using 1:2 title "5.0" with lines