plot2b2t/gnuplot

8 lines
293 B
Plaintext
Raw Permalink Normal View History

2020-04-11 21:44:21 +00:00
set xdata time
set timefmt "%s"
set grid
set terminal pngcairo size 10000,1000
2020-04-11 21:44:21 +00:00
set output 'graph.png'
f(x)=sprintf("%d", x)
plot "queuedata" u (f($1)):2 w l title "Queue", "priodata" u (f($1)):2 w l title "Priority Queue", "playerdata" u (f($1)):2 w l title "Players"