Skip to content

Instantly share code, notes, and snippets.

@justinpitts
Created August 30, 2011 18:26
Show Gist options
  • Save justinpitts/1181616 to your computer and use it in GitHub Desktop.
Save justinpitts/1181616 to your computer and use it in GitHub Desktop.
gnuplot for time series queue lengths
#set terminal png size 1200,800
set xdata time
set timefmt "%H:%M:%S"
set format x "%H:%M"
set output "load.png"
# time range must be in same format as data file
#set xrange ["08:20:00":"08:50:00"]
#set yrange [0:50]
set grid
set xlabel "Time"
set ylabel "Queue Length"
set title "Nym"
#set key left box
plot "nymcoherencequeue.dat" using 1:2 index 0 title "Nym" with lines
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment