source: liacs/ai/poker/plot-perceptron.plt@ 8

Last change on this file since 8 was 2, checked in by Rick van der Zwet, 15 years ago

Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)

  • Property svn:executable set to *
File size: 940 bytes
RevLine 
[2]1#!/usr/bin/env gnuplot -persist
2#set term x11
3set terminal postscript eps enhanced color
4set output "test-perceptrons.ps"
5set yrange [0:75]
6set xrange [100:5000]
7set ylabel "Kwaliteit in procenten"
8set xlabel "Aangeboden trainingsets"
9plot "test-perceptrons-1.dat" using 1:2 title "1" with lines,\
10 "test-perceptrons-3.dat" using 1:2 title "3" with lines,\
11 "test-perceptrons-5.dat" using 1:2 title "5" with lines,\
12 "test-perceptrons-7.dat" using 1:2 title "7" with lines,\
13 "test-perceptrons-9.dat" using 1:2 title "9" with lines,\
14 "test-perceptrons-11.dat" using 1:2 title "11" with lines,\
15 "test-perceptrons-13.dat" using 1:2 title "13" with lines,\
16 "test-perceptrons-20.dat" using 1:2 title "20" with lines,\
17 "test-perceptrons-30.dat" using 1:2 title "30" with lines,\
18 "test-perceptrons-50.dat" using 1:2 title "50" with lines,\
19 "test-perceptrons-100.dat" using 1:2 title "100" with lines
Note: See TracBrowser for help on using the repository browser.