#Set up for Losses of UDP packets set title " Loss of UDP packets v/s Time of day since Mon Feb 3 02:09:03 EST 1997" set xlabel " Minutes" set ylabel " Accumulative loss [number of packets] " set xrange [0:1440] set xtics 0, 60 #set yrange [0:300] set ytics 0, 10 set grid #set terminal postscript landscape #set output "loss.ps" plot "datafileA" using "%lf%lf" title "www.berkeley.edu" with points 1, \ "datafileB" using "%lf%lf" title "mateo.elo.utfsm.cl" with lines 2 #You could also try 1:2 instead of "%lf%lf%" to specify de data being plotted # This should be easier to pick other columns of data. #plot "datafileA" using 1:2 title "www.berkeley.edu" with points 1, \ #"datafileB" using 1:2 title "mateo.elo.utfsm.cl" with lines 2 pause -1