# Initialize things
set terminal gif
set output "combined-interval-lines.gif"
set title "Packet Interval"
set ylabel "seconds"
set xlabel "packets"
set timestamp

# Do the plot
plot "data/dump1-interval" title "Sent" with lines, "data/mydump-interval" title "Received" with lines 
