# Generic plot of multiple sensors' values outputs over multiple (~7--31) days. # Input of form (led by column titles): #2025-01-01T00:00:24Z,18.15 #2025-01-01T00:00:54Z,18.16 #2025-01-01T00:01:24Z,18.15 #2025-01-01T00:01:54Z,18.15 set datafile separator comma set timefmt "%Y-%m-%dT%H:%M:%SZ" set datafile missing "-" # Start to draw (PNG) output. set format x "%y/%m" set xdata time set terminal png size 800,200 set output "graphics/temp9M1644723.png" #set yrange [0:60] #set xtics rotate #set format y "" #set noytics set format y "%gC" plot '/dev/stdin' using 1:2 title "5s room temp C" with lines