color error values in red
[zc] / gnuplot / axes.gnuplot
1 set terminal pngcairo color size 800,600
2 #set output 'axes.png'
3 set output
4
5 set xdata time
6 set timefmt "%Y-%m-%d %H:%M:%S"
7
8 set datafile separator ","
9
10 #unset border
11 #set key outside
12 #set key top left horizontal
13
14 set grid
15 set key outside tmargin center
16
17 #set ylabel "°"
18 #set ylabel "deg."
19
20 set format x "%H:%M"
21
22 #set arrow 1 from first,3 to last,3 nohead linestyle rgb "#ff0000"
23
24 set multiplot
25 set size 1,0.5
26 set origin 0, 0.5
27
28 #set linetype 1 lc 'green'
29 set linetype 99 lc 'red'
30
31 #plot "axes.txt" using 1:2 with lines title "X angle", "" using 1:(3) with dots notitle, "" using 1:(-3) with dots notitle
32
33 plot "axes.txt" using 1:2:(abs($2) < 3 ? 1: 99) with lines lc variable title "X angle"
34
35 set origin 0, 0
36
37 #set xlabel "time"
38 #plot "axes.txt" using 1:3 with lines title "Y angle", "" using 1:(3) with dots notitle, "" using 1:(-3) with dots notitle
39
40 plot "axes.txt" using 1:3:(abs($3) < 3 ? 2: 99) with lines lc variable title "Y angle"