set term png small color set data style lines set grid set yrange [ 0 : 3 ] set title "Flood Testing Graph Y Axis Capped at 3 Seconds" set xlabel "Request Number" set ylabel "Time of Activity Completion (Sec.)" plot "plot-file.tmp" using 1:($2/1) smooth csplines title "Open" \ , "plot-file.tmp" using 1:($3/1) smooth csplines title "Write" \ , "plot-file.tmp" using 1:($4/1) smooth csplines title "Read" \ , "plot-file.tmp" using 1:($5/1) smooth csplines title "Close" \ , "plot-file.tmp" using 1:($6/1) smooth csplines title "Total"