mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-10-29 18:02:35 +00:00
12 lines
209 B
Gnuplot
12 lines
209 B
Gnuplot
set term pngcairo size 1280,768
|
|
set output "plot.png"
|
|
set datafile separator "\t"
|
|
set ylabel "Data"
|
|
set xlabel "Test#"
|
|
#set xdata time
|
|
set grid
|
|
#set key outside
|
|
set key off
|
|
plot filename using 1:2 with lines
|
|
|