-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeditemp.gnuplot
40 lines (32 loc) · 1.08 KB
/
meditemp.gnuplot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
set datafile separator ";"
set style fill transparent
set xdata time
set yrange [0:*]
set ylabel 'internal temperature [°C]' tc ls 1
set timefmt "%m/%d/%Y, %H:%M"
set term canvas standalone mousing
set output "med_temp.html"
set style line 1 \
linecolor rgb '#0060ad' \
linetype 1 linewidth 2 \
pointtype 7 pointsize 0.4
set style line 2 \
linecolor rgb '#0060ad' \
linetype 1 linewidth 1 \
pointtype 7 pointsize 0.4
set style line 3 \
linecolor rgb '#964B00' \
linetype 1 linewidth 2 \
pointtype 7 pointsize 0.4
set style line 4 \
linecolor rgb '#964B00' \
linetype 1 linewidth 1 \
pointtype 7 pointsize 0.4
set ytics nomirror tc ls 1
set y2tics nomirror tc ls 3
set y2range [0:1]
set y2label 'internal humidity [%]' tc ls 3
plot 'med_temp.csv' using 1:2 title "internal temperature [°C]" with linespoints linestyle 1, \
25 notitle with lines linestyle 2, 15 notitle with lines linestyle 2, \
'med_temp.csv' using 1:3 title "internal humidity [%]" with linespoints linestyle 3 axes x1y2, \
0.6 notitle with lines linestyle 4 axes x1y2