summaryrefslogtreecommitdiff
path: root/chart.gnuplot
blob: 1d674e3cd19634ca8ec47b1a2315ca68d70c521f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set datafile separator '	'
#set xlabel "timestamp"
set ylabel "Mbps"
set title "Speedtest"
#set xdata time
#set timefmt "%Y-%m-%dT%H:%M:%S%Z"
#set format x "%m-%dT%H"
set format y "%.2s%cb"
#plot "log.tsv" using 4:7 with lines title "Download", \
#"log.tsv" using 4:8 with lines title "Upload"
plot "log.tsv" using :7 with linespoint title "Download", \
"log.tsv" using :8 with linespoint title "Upload"