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