show xlabel, ylabel
[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 set ylabel "degrees"
20
21 set format x "%H:%M"
22
23 #set arrow 1 from first,3 to last,3 nohead linestyle rgb "#ff0000"
24
25 set multiplot
26 set size 1,0.5
27 set origin 0, 0.5
28
29 #set linetype 1 lc 'green'
30 set linetype 99 lc 'red'
31
32 #plot "axes.txt" using 1:2 with lines title "X angle", "" using 1:(3) with dots notitle, "" using 1:(-3) with dots notitle
33
34 plot "axes.txt" using 1:2:(abs($2) < 3 ? 1: 99) with lines lc variable title "X angle"
35
36 set origin 0, 0
37
38 set xlabel "time"
39 #plot "axes.txt" using 1:3 with lines title "Y angle", "" using 1:(3) with dots notitle, "" using 1:(-3) with dots notitle
40
41 plot "axes.txt" using 1:3:(abs($3) < 3 ? 2: 99) with lines lc variable title "Y angle"
42 #, "" using 1:(3) with dots notitle, "" using 1:(-3) with dots notitle