#!/usr/bin/env gnuplot -persist #set term x11 set terminal postscript eps enhanced color set output "test-perceptrons.ps" set yrange [0:75] set xrange [100:5000] set ylabel "Kwaliteit in procenten" set xlabel "Aangeboden trainingsets" plot "test-perceptrons-1.dat" using 1:2 title "1" with lines,\ "test-perceptrons-3.dat" using 1:2 title "3" with lines,\ "test-perceptrons-5.dat" using 1:2 title "5" with lines,\ "test-perceptrons-7.dat" using 1:2 title "7" with lines,\ "test-perceptrons-9.dat" using 1:2 title "9" with lines,\ "test-perceptrons-11.dat" using 1:2 title "11" with lines,\ "test-perceptrons-13.dat" using 1:2 title "13" with lines,\ "test-perceptrons-20.dat" using 1:2 title "20" with lines,\ "test-perceptrons-30.dat" using 1:2 title "30" with lines,\ "test-perceptrons-50.dat" using 1:2 title "50" with lines,\ "test-perceptrons-100.dat" using 1:2 title "100" with lines