1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #!/usr/bin/gnuplot
|
| colnum=3
|
| colnum=5
| #set yrange [0:1]
|
| plot "extend.avg" every 2::0 using 0:(column(colnum)):(column(colnum+1)) with yerrorbars lt 1 title "linear model", \
| "extend.avg" every 2::0 using 0:(column(colnum)) with lines lt 1 notitle, \
| "extend.avg" every 2::1 using 0:(column(colnum)):(column(colnum+1)) with yerrorbars lt 2 title "neural model (300 epochs)", \
| "extend.avg" every 2::1 using 0:(column(colnum)) with lines lt 2 notitle, \
| "extend.avg" every 2::0 using 0:3:xticlabels(1) lc rgb "#FF000000" notitle
|
| pause -1
|
|