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