diff options
Diffstat (limited to 'chart.gnuplot')
-rw-r--r-- | chart.gnuplot | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/chart.gnuplot b/chart.gnuplot new file mode 100644 index 0000000..1d674e3 --- /dev/null +++ b/chart.gnuplot @@ -0,0 +1,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"
\ No newline at end of file |