mm = 0.6 thick = 0.09 pp = 0.4 set terminal png small color set key box set grid set title "SCHED_OTHER Scheduler Policy Latencies (gcc load)" set xlabel "Required Sleep Time (ms)" set ylabel "Wakeup Timeout (ms)" set xrange [10:200] set yrange [0:300] set output 'oth.png' plot 'oth.dat' using ($1):($2) smooth unique title "Average" with lines 3 4,\ 'oth.dat' using ($1):($3) smooth unique title "Maximum" with lines 4 6 set title "SCHED_SOFTRR Scheduler Policy Latencies (gcc load)" set xlabel "Required Sleep Time (ms)" set ylabel "Wakeup Timeout (ms)" set xrange [10:200] set yrange [0:300] set output 'srr.png' plot 'srr.dat' using ($1):($2) smooth unique title "Average" with lines 3 4,\ 'srr.dat' using ($1):($3) smooth unique title "Maximum" with lines 4 6 set title "SCHED_OTHER Scheduler Policy Latencies (thud load)" set xlabel "Required Sleep Time (ms)" set ylabel "Wakeup Timeout (ms)" set xrange [10:200] set yrange [0:1500] set output 'toth.png' plot 'toth.dat' using ($1):($2) smooth unique title "Average" with lines 3 4,\ 'toth.dat' using ($1):($3) smooth unique title "Maximum" with lines 4 6 set title "SCHED_SOFTRR Scheduler Policy Latencies (thud load)" set xlabel "Required Sleep Time (ms)" set ylabel "Wakeup Timeout (ms)" set xrange [10:200] set yrange [0:300] set output 'tsrr.png' plot 'tsrr.dat' using ($1):($2) smooth unique title "Average" with lines 3 4,\ 'tsrr.dat' using ($1):($3) smooth unique title "Maximum" with lines 4 6