blob: 188436f68d48ec6f74dbf4d26ca7211075025ade (
plain) (
blame)
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
|
# set datafile separator comma;
set key autotitle columnhead;
set terminal dumb size 192,42;
# set grid;
# set logscale x;
# set logscale y;
### plot time v data
# plot 't0.log' using 2:3 with dots;
# plot 't0.log' using 2:4 with dots;
# plot 't0.log' using 2:6 with dots;
### plot est v unc
# plot 't0.log' using 2:3 with dots;
# plot 't0.log' using 4:5 with dots;
# plot 't0.log' using 6:7 with dots;
### plot unc v unc
# plot 't0.log' using 3:5 with dots;
# plot 't0.log' using 3:7 with dots;
# plot 't0.log' using 5:7 with dots;
### plot uptime v data
# plot 't0.log' using 4:2 with dots;
# plot 't0.log' using 4:3 with dots;
# plot 't0.log' using 4:5 with dots;
# plot 't0.log' using 4:6 with dots;
# plot 't0.log' using 4:7 with dots;
# plot 't0.log' using 2:4:(0.5*$5) with errorbars;
# plot 't0.log' using 4:6:(0.5*$7) with errorbars;
|