set term postscript monochrome eps enhanced size 20 cm, 8 cm font "Times-Roman" set output "casestudy.eps" set key top left reverse Left set multiplot layout 2, 5 set xlabel ' ' set xtics 1 set xrange [0.5:3.5] set yrange [10:40] set xlabel "Number of video streams" set ylabel "Frames per second" set title "a) No load" plot \ 'frsh.dat' using ($1+0.8):2:(0.3) with boxes fs solid 0.5 title "FRSH", \ 'no-frsh.dat' using ($1+1.2):2:(0.3) with boxes fs pattern 1 title "No FRSH" set xlabel ' ' unset ylabel set title "b) Wi-Fi loaded" plot \ 'frsh-wifi-load.dat' using ($1+0.8):2:(0.3) with boxes fs solid 0.5 title "FRSH" , \ 'no-frsh-wifi-load.dat' using ($1+1.2):2:(0.3) with boxes fs pattern 1 title "No FRSH" set title "c) CPU loaded" plot \ 'frsh-cpu-load.dat' using ($1+0.8):2:(0.3) with boxes fs solid 0.5 title "FRSH", \ 'no-frsh-cpu-load.dat' using ($1+1.2):2:(0.3) with boxes fs pattern 1 title "No FRSH" set title "d) Disk loaded" plot \ 'frsh-dd.dat' using ($1+0.8):2:(0.3) with boxes fs solid 0.5 title "FRSH", \ 'no-frsh-dd.dat' using ($1+1.2):2:(0.3) with boxes fs pattern 1 title "No FRSH" set title "e) All 3 resources loaded" plot \ 'frsh-combined-load.dat' using ($1+0.8):2:(0.3) with boxes fs solid 0.5 title "FRSH", \ 'no-frsh-combined-load.dat' using ($1+1.2):2:(0.3) with boxes fs pattern 1 title "No FRSH" set yrange [0:0.03] set yrange [0:0.2] set xlabel "Number of video streams" set ylabel "Standard deviation of\ninter-frame time [s]" set title "f) No load" plot \ 'frsh.dat' using ($1+0.8):3:(0.3) with boxes fs solid 0.5 title "FRSH", \ 'no-frsh.dat' using ($1+1.2):3:(0.3) with boxes fs pattern 1 title "No FRSH" set xlabel ' ' unset ylabel set title "g) Wi-Fi loaded" plot \ 'frsh-wifi-load.dat' using ($1+0.8):3:(0.3) with boxes fs solid 0.5 title "FRSH" , \ 'no-frsh-wifi-load.dat' using ($1+1.2):3:(0.3) with boxes fs pattern 1 title "No FRSH" set title "h) CPU loaded" plot \ 'frsh-cpu-load.dat' using ($1+0.8):3:(0.3) with boxes fs solid 0.5 title "FRSH", \ 'no-frsh-cpu-load.dat' using ($1+1.2):3:(0.3) with boxes fs pattern 1 title "No FRSH" set title "i) Disk loaded" plot \ 'frsh-dd.dat' using ($1+0.8):3:(0.3) with boxes fs solid 0.5 title "FRSH", \ 'no-frsh-dd.dat' using ($1+1.2):3:(0.3) with boxes fs pattern 1 title "No FRSH" set title "j) All 3 resources loaded" plot \ 'frsh-combined-load.dat' using ($1+0.8):3:(0.3) with boxes fs solid 0.5 title "FRSH", \ 'no-frsh-combined-load.dat' using ($1+1.2):3:(0.3) with boxes fs pattern 1 title "No FRSH"