# set term x11 # set term gif size 640,480 # set out 'read.gif' set term png small color set out 'read.png' set data style linespoints set key left set title "Read Latency vs. File Size" set xlabel "File Size (Bytes)" set ylabel "milli-seconds" set yrange [0:] plot "read.dat" using 1:2 title "null call", \ "read.dat" using 1:($2+$3) title "nfs read" # pause 100