commit | author | age | ||
425bf7 | 1 | #!/usr/bin/gnuplot |
JK | 2 | |
3 | colnum=2 | |
4 | ||
5 | colnum=4 | |
6 | ||
7 | ||
8 | set xrange [-1:4] | |
9 | ||
10 | plot "design.avg" using 0:(column(colnum)):(column(colnum+1)):xticlabels(1) with yerrorbars lt 1 title "neural model (300 epochs)", \ | |
11 | "design.avg" using 0:(column(colnum)):(column(colnum+1)) with lines lt 1 notitle | |
12 | ||
13 | pause -1 |