Heating controller with neural thermal model written in Python
Jacek Kowalski
2018-06-24 425bf71fc0b24b547006686d83404c54b983de0b
commit | author | age
425bf7 1 #!/usr/bin/gnuplot
JK 2
3 colnum=3
4
5 #colnum=5
6 #set yrange [0:1]
7
8 set key left top
9
10 plot "aggregation.avg" every 4::0 using ($0 - 0.15):(column(colnum)):(column(colnum+1)) with yerrorbars lt 1 title "linear model", \
11     "aggregation.avg" every 4::0 using ($0 - 0.15):(column(colnum)) with lines lt 1 notitle, \
12     "aggregation.avg" every 4::1 using ($0 - 0.05):(column(colnum)):(column(colnum+1)) with yerrorbars lt 2 title "neural model (100 epochs)", \
13     "aggregation.avg" every 4::1 using ($0 - 0.05):(column(colnum)) with lines lt 2 notitle, \
14     "aggregation.avg" every 4::2 using ($0 + 0.05):(column(colnum)):(column(colnum+1)) with yerrorbars lt 3 title "neural model (200 epochs)", \
15     "aggregation.avg" every 4::2 using ($0 + 0.05):(column(colnum)) with lines lt 3 notitle, \
16     "aggregation.avg" every 4::3 using ($0 + 0.15):(column(colnum)):(column(colnum+1)) with yerrorbars lt 4 title "neural model (300 epochs)", \
17     "aggregation.avg" every 4::3 using ($0 + 0.15):(column(colnum)) with lines lt 4 notitle, \
18     "aggregation.avg" every 4::0 using 0:3:xticlabels(1) lc rgb "#FF000000" notitle
19
20 pause -1