mm = 0.6 thick = 0.09 pp = 0.4 set terminal png small color set key box set bars large set title "128 Bytes Content-Length" set xlabel "Dead Connections" set ylabel "HTTP Responses / Second" set xrange [0:16000] set yrange [2000:30000] set output 'test128.png' plot 'sp-128.dat' smooth cspline title "poll()" with lines 3 4,\ "" u 1:2:3 title "" with errorbars 3 4,\ 'dp-128.dat' smooth cspline title "/dev/poll" with lines 5 6,\ "" u 1:2:3 title "" with errorbars 5 6,\ 'ep-128.dat' smooth cspline title "/dev/epoll" with lines 7 8,\ "" u 1:2:3 title "" with errorbars 7 8 set title "512 Bytes Content-Length" set xlabel "Dead Connections" set ylabel "HTTP Responses / Second" set xrange [0:16000] set yrange [2000:20000] set output 'test512.png' plot 'sp-512.dat' smooth cspline title "poll()" with lines 3 4,\ "" u 1:2:3 title "" with errorbars 3 4,\ 'dp-512.dat' smooth cspline title "/dev/poll" with lines 5 6,\ "" u 1:2:3 title "" with errorbars 5 6,\ 'ep-512.dat' smooth cspline title "/dev/epoll" with lines 7 8,\ "" u 1:2:3 title "" with errorbars 7 8 set title "1024 Bytes Content-Length" set xlabel "Dead Connections" set ylabel "HTTP Responses / Second" set xrange [0:16000] set yrange [2000:13000] set output 'test1024.png' plot 'sp-1024.dat' smooth cspline title "poll()" with lines 3 4,\ "" u 1:2:3 title "" with errorbars 3 4,\ 'dp-1024.dat' smooth cspline title "/dev/poll" with lines 5 6,\ "" u 1:2:3 title "" with errorbars 5 6,\ 'ep-1024.dat' smooth cspline title "/dev/epoll" with lines 7 8,\ "" u 1:2:3 title "" with errorbars 7 8